UNPKG
@fitch-digital/fitch-create-app
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
Boilerplate templates for FITCH projects
@fitch-digital/fitch-create-app
/
templates
/
react
/
src
/
frontend
/
pages
/
home
/
index.jsx
11 lines
(8 loc)
•
172 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
'react'
;
import
'./style.scss'
;
const
Home
= (
) => (
<
div
className
=
'home'
>
<
p
>
This is the home page
</
p
>
</
div
>
);
export
default
Home
;