v2: prepare to move

This commit is contained in:
endiliey 2018-09-17 11:16:07 +08:00
parent dc7ef96849
commit 45736200b0
172 changed files with 0 additions and 0 deletions

18
v2/website/pages/index.js Normal file
View file

@ -0,0 +1,18 @@
import React from 'react';
import Helmet from 'react-helmet';
import Layout from '@theme/Layout';
import Todo from '@site/components/Todo';
export default class Home extends React.Component {
render() {
return (
<Layout {...this.props}>
<Helmet>
<title>Todo App</title>
<link rel="stylesheet" type="text/css" href="/css/basic.css" />
</Helmet>
<Todo />
</Layout>
);
}
}