mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-22 20:01:59 +00:00
16 lines
288 B
TypeScript
16 lines
288 B
TypeScript
import styled from 'styled-components';
|
|
|
|
const StyledDashboard = styled.main`
|
|
padding: 20px;
|
|
`;
|
|
|
|
const Dashboard = () => {
|
|
return (
|
|
<StyledDashboard>
|
|
<p>This page currently still develop. Please try again later!</p>
|
|
</StyledDashboard>
|
|
);
|
|
};
|
|
|
|
export default Dashboard;
|