File tree 3 files changed +6
-1
lines changed
3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ type Props = {
23
23
const Routing = React . memo ( ( ) => (
24
24
< Switch >
25
25
< Redirect exact = { true } from = "/" to = "/randomizer/nemesis" />
26
+ < Redirect exact = { true } from = "/nemesis" to = "/randomizer/nemesis" />
27
+ < Redirect exact = { true } from = "/mages" to = "/randomizer/mages" />
28
+ < Redirect exact = { true } from = "/supply" to = "/randomizer/supply" />
26
29
< Route exact = { true } path = "/randomizer/nemesis" component = { Nemeses } />
27
30
< Route exact = { true } path = "/randomizer/mages" component = { Mages } />
28
31
< Route exact = { true } path = "/randomizer/supply" component = { Supply } />
File renamed without changes.
Original file line number Diff line number Diff line change @@ -5,11 +5,13 @@ import IconButton from '@material-ui/core/IconButton'
5
5
import ChevronLeftIcon from '@material-ui/icons/ChevronLeft'
6
6
7
7
import Navigation from '../../molecules/Navigation'
8
+
8
9
import Header from './Header'
9
10
import AppInfo from './AppInfo'
10
11
import GitHubLink from './GitHubLink'
11
12
import GitHubLogo from './GitHubLogo'
12
13
import Drawer from './Drawer'
14
+ import GitHubSvg from './github-logo.svg'
13
15
14
16
type Props = {
15
17
drawerIsOpen : boolean
@@ -38,7 +40,7 @@ const DrawerMenu = React.memo(({ drawerIsOpen, toggleDrawer }: Props) => (
38
40
color = "inherit"
39
41
target = "_blank"
40
42
>
41
- < GitHubLogo src = "images/github-logo.svg" alt = "SVG: Github logo" />
43
+ < GitHubLogo src = { GitHubSvg } alt = "SVG: Github logo" />
42
44
Github
43
45
</ GitHubLink >
44
46
</ AppInfo >
You can’t perform that action at this time.
0 commit comments