added more structure, sass, and page routers
This commit is contained in:
parent
c774dff9e0
commit
bda7b7224a
23 changed files with 767 additions and 158 deletions
8
src/components/Footer.jsx
Normal file
8
src/components/Footer.jsx
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
const Footer = () => (
|
||||
<footer>
|
||||
<p>© ISSP 5</p>
|
||||
</footer>
|
||||
);
|
||||
|
||||
export default Footer;
|
||||
11
src/components/Header.jsx
Normal file
11
src/components/Header.jsx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
const Header = () => {
|
||||
|
||||
return (
|
||||
<header>
|
||||
<h1><a href="#0">Header</a></h1>
|
||||
</header>
|
||||
);
|
||||
}
|
||||
|
||||
export default Header;
|
||||
Loading…
Add table
Add a link
Reference in a new issue