mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-22 20:01:59 +00:00
16 lines
214 B
TypeScript
16 lines
214 B
TypeScript
import styled from 'styled-components';
|
|
|
|
const StyledUser = styled.main`
|
|
padding: 20px;
|
|
`;
|
|
|
|
const User = () => {
|
|
return (
|
|
<StyledUser>
|
|
<p>User page</p>
|
|
</StyledUser>
|
|
);
|
|
};
|
|
|
|
export default User;
|