import React from "react"; import styles from "./index.less"; import { Router, Route, Link, hashHistory } from "react-router"; import { Breadcrumb, Alert } from "antd"; const Apps = () => ( ); const Home = ({ routes, params, children }) => (
Home Application List
{children || "Home Page"}
); export default () => (
);