export const state = {
title: 'My App'
}
import { state } from './state'
export const config = {
state
}
import { createOvermind } from 'overmind'
import { config } from './overmind'
const overmind = createOvermind(config)
And fire up your application in the browser or whatever environment your user interface is to be consumed in by the users.