mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-11 14:34:56 -05:00
15 lines
302 B
TypeScript
15 lines
302 B
TypeScript
import { Box } from '@material-ui/core';
|
|
import React from 'react';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
import { Login } from '../containers/Login';
|
|
|
|
export const Header: React.FC = () => (
|
|
<Box>
|
|
<Link to="/">
|
|
<button type="button">Home</button>
|
|
</Link>
|
|
<Login />
|
|
</Box>
|
|
);
|