2021-09-24 16:47:45 +09:00
|
|
|
import Online from './Online'
|
|
|
|
import Head from './Head'
|
2021-09-24 19:06:26 +09:00
|
|
|
import PlayerNameHolder from './PlayerNameHolder'
|
2021-09-25 07:51:13 +09:00
|
|
|
import Biography from './Biography'
|
2021-09-24 09:15:03 +09:00
|
|
|
|
|
|
|
function App (props) {
|
|
|
|
const uuid = props;
|
|
|
|
|
|
|
|
return (
|
2021-09-24 16:47:45 +09:00
|
|
|
<div className="w-full flex flex-wrap">
|
|
|
|
<div>
|
|
|
|
<Head uuid={uuid.uuid} />
|
|
|
|
</div>
|
|
|
|
<div className="w-5"></div>
|
|
|
|
<div>
|
2021-09-24 19:06:26 +09:00
|
|
|
<p className="text-2xl text-mono"><PlayerNameHolder uuid={uuid.uuid} /></p>
|
2021-09-24 17:43:07 +09:00
|
|
|
<p><Online uuid={uuid.uuid} /></p>
|
2021-09-25 07:51:13 +09:00
|
|
|
<p><Biography uuid={uuid.uuid} /></p>
|
2021-09-24 16:47:45 +09:00
|
|
|
</div>
|
2021-09-24 09:15:03 +09:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|