UNPKG
cra-template-fireship
Version:
latest (0.3.2)
0.3.2
0.3.1
Build and ship 🔥 your app ⚡ faster
github.com/klutchdev/fireship-js
klutchdev/fireship-js
cra-template-fireship
/
template
/
src
/
App.js
18 lines
(16 loc)
•
353 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function
App
(
) {
return
(
<>
<
div
className
=
"header"
/>
<
div
className
=
"npm-command"
>
<
code
>
$ npx create-react-app
<
span
className
=
"npm-cra"
>
yourAppName
</
span
>
--template
<
span
className
=
"npm-template"
>
fireship
</
span
>
</
code
>
</
div
>
</>
); }
export
default
App
;