1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/routes.ts

9 lines
233 B
TypeScript
Raw Normal View History

2019-04-24 00:29:07 +09:00
import { createElement } from "react";
import { Home, Info } from "@material-ui/icons";
const routes = [
{ pathname: "/", icon: createElement(Home) },
2020-06-11 20:59:34 +09:00
{ pathname: "/about", icon: createElement(Info) },
2019-04-24 00:29:07 +09:00
];
export default routes;