Add sidebar component

This commit is contained in:
2023-10-18 11:44:41 +07:00
parent 2a0b350a73
commit 50931b3252
12 changed files with 233 additions and 5 deletions
+15
View File
@@ -0,0 +1,15 @@
import styled from 'styled-components';
const StyledUser = styled.main`
padding: 20px;
`;
const User = () => {
return (
<StyledUser>
<p>User page</p>
</StyledUser>
);
};
export default User;