mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
* Automated translation update ( bf08a04cda )
* Add Layout component wip
* finish layout implementation
* convert header to left nav
* better nav item spacing
* return source files to original glory
* lint fix
* Remove height limit on login screen
* fix top spacing on 3-panel layout
---------
Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Brent Clark <brent@backboneiq.com>
20 lines
353 B
TypeScript
20 lines
353 B
TypeScript
// eslint-disable-next-line
|
|
import React, { Component } from "react";
|
|
|
|
import { AuthGuard } from 'components';
|
|
import Layout from 'containers/Layout/Layout';
|
|
|
|
import './Game.css';
|
|
|
|
class Game extends Component {
|
|
render() {
|
|
return (
|
|
<Layout>
|
|
<AuthGuard />
|
|
<span>"Game"</span>
|
|
</Layout>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default Game;
|