diff options
Diffstat (limited to 'src/containers/Home.tsx')
-rw-r--r-- | src/containers/Home.tsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/containers/Home.tsx b/src/containers/Home.tsx new file mode 100644 index 0000000..7f62186 --- /dev/null +++ b/src/containers/Home.tsx @@ -0,0 +1,15 @@ +import React from 'react'; +import Paper from '../components/Paper'; +import Button from '../components/Button'; + +const Home: React.FC = () => ( + <Paper> + <p> + Привет, мир! + <Button>Нажми меня</Button> + <Button variant="outlined">Отменить</Button> + </p> + </Paper> +); + +export default Home; |