mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
14 lines
223 B
TypeScript
14 lines
223 B
TypeScript
import Layout from '../Layout/Layout';
|
|
|
|
import { AuthGuard } from '@app/components';
|
|
|
|
function Player() {
|
|
return (
|
|
<Layout>
|
|
<AuthGuard />
|
|
<span>"Player"</span>
|
|
</Layout>
|
|
);
|
|
}
|
|
|
|
export default Player;
|