mirror of
https://github.com/docker/awesome-compose.git
synced 2025-11-10 04:24:10 +01:00
11 lines
154 B
JavaScript
Executable File
11 lines
154 B
JavaScript
Executable File
import * as React from "react";
|
|
import Home from "./pages/home"
|
|
|
|
const routes = [
|
|
Home,
|
|
];
|
|
|
|
export const renderRoutes = () => {
|
|
return routes;
|
|
};
|