UNPKG
cra-template-paulo-vanilla
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
CRA with more organized folder structure, CSS Modules, helpful Readme and project Snippets.
cra-template-paulo-vanilla
/
template
/
src
/
pages
/
Home
/
Home.jsx
10 lines
(8 loc)
•
184 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
import
styles
from
"./Home.module.css"
export
function
Home
(
) {
return
(
<
div
className
=
{styles.HomeContainer}
>
Hello Warudo
</
div
>
); }