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
/
components
/
Button
/
Button.jsx
9 lines
(7 loc)
•
176 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
import
styles
from
"./Button.module.css"
export
function
Button
(
) {
return
(
<
div
className
=
{styles.ButtonContainer}
>
</
div
>
); }