fix: add header, footer components
This commit is contained in:
3
src/widgets/footer/styles.module.scss
Normal file
3
src/widgets/footer/styles.module.scss
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
.Footer {
|
||||||
|
|
||||||
|
}
|
||||||
5
src/widgets/footer/ui.tsx
Normal file
5
src/widgets/footer/ui.tsx
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
import s from './styles.module.scss';
|
||||||
|
|
||||||
|
export default function Footer() {
|
||||||
|
return <footer className={s.Footer}>footer</footer>;
|
||||||
|
}
|
||||||
2
src/widgets/header/styles.module.scss
Normal file
2
src/widgets/header/styles.module.scss
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
.Header {
|
||||||
|
}
|
||||||
5
src/widgets/header/ui.tsx
Normal file
5
src/widgets/header/ui.tsx
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
import s from './styles.module.scss';
|
||||||
|
|
||||||
|
export default function Header() {
|
||||||
|
return <header className={s.Header}>header</header>;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user