UNPKG
generator-oxy-gen
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Yeoman generator for Electron app with React and Rust (WASM).
generator-oxy-gen
/
generators
/
app
/
templates
/
src
/
components
/
Spinner
/
index.js
12 lines
(8 loc)
•
152 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
React
from
'react'
;
import
'./spinner.scss'
;
const
Spinner
= (
) => {
return
(
<
div
className
=
'spinner'
/>
); }
export
default
Spinner
;