mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-19 20:17:06 +02:00
17 lines
383 B
JavaScript
17 lines
383 B
JavaScript
import React from 'react';
|
|
import Helmet from 'react-helmet';
|
|
import Layout from '@theme/Layout';
|
|
import Tictactoe from '@site/components/Tictactoe';
|
|
|
|
export default class Home extends React.Component {
|
|
render() {
|
|
return (
|
|
<Layout {...this.props}>
|
|
<Helmet>
|
|
<title>Tic Tac Toe</title>
|
|
</Helmet>
|
|
<Tictactoe />
|
|
</Layout>
|
|
);
|
|
}
|
|
}
|