UNPKG
template-maker
Version:
latest (1.0.1)
1.0.1
1.0.0
A CLI to generate project templates with alot of options!!
template-maker
/
templates
/
react
/
react-temp
/
src
/
App.js
14 lines
(11 loc)
•
191 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
React
from
'react'
import
'./App.css'
;
import
Main
from
'./components/main'
function
App
(
) {
return
(
<
div
className
=
"App"
>
<
Main
/>
</
div
>
); }
export
default
App
;