UNPKG
generator-min-app
Version:
latest (1.0.6)
1.0.6
1.0.5
hcy system layout and pages
generator-min-app
/
generators
/
app
/
templates
/
src
/
components
/
Chart
/
common.ts
12 lines
(9 loc)
•
239 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import React
from
'react'
;
const
crateContainer
= (id:
string
) => {
const
reactElement
= React.
createElement
(
'div'
, {
style
: {
width
:
'100%'
,
height
:
'100%'
},
id
: id, });
return
reactElement; }; export { crateContainer };