feat: change layout
This commit is contained in:
11
src/components/Header/index.tsx
Normal file
11
src/components/Header/index.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import React from 'react';
|
||||
import { styled } from '@/styles';
|
||||
|
||||
const StyledHeader = styled('div')({
|
||||
height: '60px',
|
||||
width: '100vh',
|
||||
borderBottom: '1px solid gray',
|
||||
});
|
||||
export const Header = () => {
|
||||
return <StyledHeader>Here is header</StyledHeader>;
|
||||
};
|
||||
Reference in New Issue
Block a user