UNPKG
react-numeric
Version:
latest (1.0.0)
1.0.0
0.4.1
0.4.0
0.3.0
0.2.0
0.1.3
0.1.2
0.1.1
0.1.0
0.0.2
0.0.1
A react component for formatted number form fields
github.com/mkg0/react-numeric
mkg0/react-numeric
react-numeric
/
example
/
components
/
Layout
/
index.js
10 lines
(7 loc)
•
203 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
"react"
;
import
styles
from
"./layout.css"
;
import
"./fonts.css"
;
const
Layout
= props => {
return
<
div
className
=
{styles.wrapper}
>
{props.children}
</
div
>
; };
export
default
Layout
;