summaryrefslogtreecommitdiff
path: root/src/containers/Home.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/Home.tsx')
-rw-r--r--src/containers/Home.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/containers/Home.tsx b/src/containers/Home.tsx
index 7f62186..f39861a 100644
--- a/src/containers/Home.tsx
+++ b/src/containers/Home.tsx
@@ -1,15 +1,15 @@
import React from 'react';
-import Paper from '../components/Paper';
+import Page from '../containers/Page';
import Button from '../components/Button';
const Home: React.FC = () => (
- <Paper>
+ <Page title="Главная">
<p>
Привет, мир!
<Button>Нажми меня</Button>
<Button variant="outlined">Отменить</Button>
</p>
- </Paper>
+ </Page>
);
export default Home;