File size: 253 Bytes
1ddbce4
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from 'react';
import Layout from '../components/Layout';
import TodoList from '../components/TodoList';

const HomePage = () => {
 return (
    <Layout pageTitle="Todo List">
      <TodoList />
    </Layout>
 );
};

export default HomePage;