mirror of
https://github.com/chaoticbackup/chaoticbackup.github.io.git
synced 2026-04-23 00:57:32 -05:00
19 lines
440 B
JavaScript
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>
|
|
);
|
|
}
|