feat: change layout

This commit is contained in:
QiShaoXuan
2022-10-12 10:14:58 +08:00
parent 71e60bc3a5
commit 596964fddf
3 changed files with 18 additions and 27 deletions

View 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>;
};