From c6fac69a8273ce20216002925deb0a2b5425dc25 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 14 Mar 2021 01:00:49 +0300 Subject: feat: add basic routing --- src/containers/Home.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/containers/Home.tsx (limited to 'src/containers/Home.tsx') 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 = () => ( + +

+ Привет, мир! + + +

+
+); + +export default Home; -- cgit v1.2.3