mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-06 05:37:16 +02:00
18 lines
439 B
JavaScript
18 lines
439 B
JavaScript
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>
|
|
);
|
|
}
|
|
}
|