Skip to content

Commit 1333ec7

Browse files
authored
Export config from index.ts
Gives error: `Attempted import error: 'config' is not exported from './overmind'.`
1 parent 006650e commit 1333ec7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/overmind-website/examples/guide/getstarted/connectapp.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { state } from './state'
88
import * as actions from './actions'
99
import * as effects from './effects'
1010
11-
const config = {
11+
export const config = {
1212
state,
1313
actions,
1414
effects
@@ -106,7 +106,7 @@ import { state } from './state'
106106
import * as actions from './actions'
107107
import * as effects from './effects'
108108
109-
const config = {
109+
export const config = {
110110
state,
111111
actions,
112112
effects

0 commit comments

Comments
 (0)