parent
714de076b7
commit
3e28a86d08
@ -1,5 +1,9 @@ |
||||
export const PAGES = { |
||||
home: '/home', |
||||
home: '/', |
||||
login: '/login', |
||||
match: '/matches', |
||||
player: '/players', |
||||
register: '/register', |
||||
team: '/teams', |
||||
tournament: '/tournaments', |
||||
} |
||||
|
||||
@ -0,0 +1,12 @@ |
||||
import React from 'react' |
||||
import styled from 'styled-components' |
||||
|
||||
const TempPageTitle = styled.span` |
||||
padding: 20px; |
||||
font-size: 20px; |
||||
color: white; |
||||
` |
||||
|
||||
export const MatchPage = () => ( |
||||
<TempPageTitle>MATCH PAGE</TempPageTitle> |
||||
) |
||||
@ -0,0 +1,12 @@ |
||||
import React from 'react' |
||||
import styled from 'styled-components' |
||||
|
||||
const TempPageTitle = styled.span` |
||||
padding: 20px; |
||||
font-size: 20px; |
||||
color: white; |
||||
` |
||||
|
||||
export const PlayerPage = () => ( |
||||
<TempPageTitle>PLAYER PAGE</TempPageTitle> |
||||
) |
||||
@ -0,0 +1,12 @@ |
||||
import React from 'react' |
||||
import styled from 'styled-components' |
||||
|
||||
const TempPageTitle = styled.span` |
||||
padding: 20px; |
||||
font-size: 20px; |
||||
color: white; |
||||
` |
||||
|
||||
export const TeamPage = () => ( |
||||
<TempPageTitle>TEAM PAGE</TempPageTitle> |
||||
) |
||||
@ -0,0 +1,12 @@ |
||||
import React from 'react' |
||||
import styled from 'styled-components' |
||||
|
||||
const TempPageTitle = styled.span` |
||||
padding: 20px; |
||||
font-size: 20px; |
||||
color: white; |
||||
` |
||||
|
||||
export const TournamentPage = () => ( |
||||
<TempPageTitle>TOURNAMENT PAGE</TempPageTitle> |
||||
) |
||||
Loading…
Reference in new issue