Преглед на файлове

feat(Home component): add new home component

Helder преди 6 години
родител
ревизия
7c4a1623f1
променени са 1 файла, в които са добавени 19 реда и са изтрити 0 реда
  1. 19 0
      src/app/containers/Home/index.jsx

+ 19 - 0
src/app/containers/Home/index.jsx

@@ -0,0 +1,19 @@
+import React, { Component } from 'react';
+import { Header } from '../../components'
+
+
+export default class Home extends Component{
+
+    constructor(props){
+        super(props);
+    }
+
+    render(){
+        return(
+              <div>
+                <Header />
+                <h1>To Do</h1>
+              </div>
+          )
+    }
+}