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