2022-03-28 17:56:13 +11:00
|
|
|
/** @jsxImportSource @emotion/react */
|
|
|
|
import { css } from '@emotion/react';
|
|
|
|
|
2022-03-22 23:34:45 +11:00
|
|
|
import React from 'react';
|
2022-03-23 22:55:22 +11:00
|
|
|
import { Header } from './Header';
|
2022-03-24 00:02:35 +11:00
|
|
|
import { HomePage } from './HomePage';
|
2022-03-22 23:34:45 +11:00
|
|
|
|
|
|
|
function App() {
|
|
|
|
return (
|
2022-03-28 17:56:13 +11:00
|
|
|
<div
|
|
|
|
css={css`
|
|
|
|
font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #5c5a5a;
|
|
|
|
`}
|
|
|
|
>
|
2022-03-23 22:55:22 +11:00
|
|
|
<Header />
|
2022-03-24 00:02:35 +11:00
|
|
|
<HomePage />
|
2022-03-22 23:34:45 +11:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-03-23 09:55:03 +11:00
|
|
|
class ProblemComponent extends React.Component {
|
|
|
|
render() {
|
|
|
|
return <div ref="div" />;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-22 23:34:45 +11:00
|
|
|
export default App;
|