10 lines
154 B
JavaScript
Executable file
10 lines
154 B
JavaScript
Executable file
import * as React from "react";
|
|
import Home from "./pages/home"
|
|
|
|
const routes = [
|
|
Home,
|
|
];
|
|
|
|
export const renderRoutes = () => {
|
|
return routes;
|
|
};
|