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