mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
Kohei Watanabe
90bb5008c5
git-subtree-dir: next git-subtree-mainline:5d936d154e
git-subtree-split:19b6c91e86
8 lines
233 B
TypeScript
8 lines
233 B
TypeScript
import { createElement } from "react";
|
|
import { Home, Info } from "@material-ui/icons";
|
|
|
|
const routes = [
|
|
{ pathname: "/", icon: createElement(Home) },
|
|
{ pathname: "/about", icon: createElement(Info) },
|
|
];
|
|
export default routes;
|