chaoticbackup.github.io/src/components/portal/Home.js
2017-11-13 02:35:46 -05:00

19 lines
440 B
JavaScript

import React from 'react';
import Interactive from 'react-interactive';
import { Link } from 'react-router';
import s from '../../styles/home.style';
export default function PortalHome() {
return (
<div>
<Interactive as={Link} {...s.link}
to="/portal/Creatures"
>Creatures</Interactive>
<br />
<Interactive as={Link} {...s.link}
to="/portal/Mugic"
>Mugic</Interactive>
</div>
);
}