blob: f39861a47c688b092333d6f8f3b00be8138c0f8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import React from 'react';
import Page from '../containers/Page';
import Button from '../components/Button';
const Home: React.FC = () => (
<Page title="Главная">
<p>
Привет, мир!
<Button>Нажми меня</Button>
<Button variant="outlined">Отменить</Button>
</p>
</Page>
);
export default Home;
|