import React from 'react'
import { mount } from 'react-mounter'

import Layout from '../../ui/layouts/Layout/Layout.coffee'
import Main from '../../ui/pages/Main/Main.coffee'

FlowRouter.route '/',
  name: 'main'
  action: =>
    mount Layout,
      content: <Main />
