import React from 'react'; import { Route, IndexRoute } from 'react-router'; import { Link } from 'react-router'; import { FormattedMessage } from 'react-intl'; import styles from 'index.scss'; function CoreLayout(props) { return (
{props.children}
); } function HomeView() { return (
Home! Auth
); } function AuthView() { return (
Auth! Home
); } export default ( );