mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
18 lines
334 B
TypeScript
18 lines
334 B
TypeScript
// eslint-disable-next-line
|
|
import React, { Component } from "react";
|
|
import Layout from '../Layout/Layout';
|
|
|
|
import { AuthGuard } from '@app/components';
|
|
|
|
class Player extends Component {
|
|
render() {
|
|
return (
|
|
<Layout>
|
|
<AuthGuard />
|
|
<span>"Player"</span>
|
|
</Layout>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default Player;
|