summaryrefslogtreecommitdiff
path: root/src/containers/Home.tsx
blob: 7f621864721895512b86fe2c40caba2d70680919 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;