randt's picture
Add 17 files
1ddbce4 verified
raw
history blame contribute delete
253 Bytes
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;