Skip to content

Commit 01cedb5

Browse files
docs(website): use overmind as application name, not app
1 parent 97f720d commit 01cedb5

File tree

100 files changed

+263
-279
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+263
-279
lines changed

packages/node_modules/overmind-devtools/src/BackendConnector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { ipcRenderer } from 'electron'
22

3-
import { AppMessage, AppMessageType } from './app/types'
3+
import { AppMessage, AppMessageType } from './overmind/types'
44

55
type Message = {
66
appName: string

packages/node_modules/overmind-devtools/src/components/Action/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { createElement, SFC } from 'react'
2-
import { useOvermind } from '../../app'
2+
import { useOvermind } from '../../overmind'
33
import * as styles from './styles'
44
import ActionOperator from '../ActionOperator'
55
import Flush from '../ActionFlush'
6-
import { getActionId, getOperatorId } from '../../app/utils'
6+
import { getActionId, getOperatorId } from '../../overmind/utils'
77
import { css } from 'emotion'
88

99
const Action: SFC = () => {

packages/node_modules/overmind-devtools/src/components/ActionFlush/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createElement, SFC } from 'react'
2-
import { useOvermind } from '../../app'
3-
import { Flush as FlushType } from '../../app/types'
2+
import { useOvermind } from '../../overmind'
3+
import { Flush as FlushType } from '../../overmind/types'
44
import * as actionStyles from '../Action/styles'
55
import * as styles from './styles'
66
import * as textStyles from '../../styles/text'

packages/node_modules/overmind-devtools/src/components/ActionOperator/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createElement, SFC } from 'react'
2-
import { useOvermind } from '../../app'
3-
import { Operator as OperatorType } from '../../app/types'
2+
import { useOvermind } from '../../overmind'
3+
import { Operator as OperatorType } from '../../overmind/types'
44
import ValueInspector from '../ValueInspector'
55
import Icon from '../common/Icon'
66
import Path from '../ActionPath'

packages/node_modules/overmind-devtools/src/components/Actions/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { createElement, SFC } from 'react'
2-
import { useOvermind } from '../../app'
2+
import { useOvermind } from '../../overmind'
33
import ActionsList from '../ActionsList'
44
import Action from '../Action'
55
import * as styles from './styles'

packages/node_modules/overmind-devtools/src/components/ActionsList/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { createElement, SFC } from 'react'
2-
import { useOvermind } from '../../app'
3-
import { ActionsListItemType } from '../../app/types'
4-
import { nameToColor } from '../../app/utils'
2+
import { useOvermind } from '../../overmind'
3+
import { ActionsListItemType } from '../../overmind/types'
4+
import { nameToColor } from '../../overmind/utils'
55
import * as textStyles from '../../styles/text'
66
import * as styles from './styles'
77

packages/node_modules/overmind-devtools/src/components/Apps/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createElement, SFC } from 'react'
2-
import { useOvermind } from '../../app'
3-
import { getAppShortName, nameToColor } from '../../app/utils'
2+
import { useOvermind } from '../../overmind'
3+
import { getAppShortName, nameToColor } from '../../overmind/utils'
44
import * as styles from './styles'
55
import { css } from 'emotion'
66

packages/node_modules/overmind-devtools/src/components/Components/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { createElement, SFC } from 'react'
2-
import { useOvermind } from '../../app'
2+
import { useOvermind } from '../../overmind'
33
import Table, { Row, Cell } from '../common/Table'
44
import * as styles from './styles'
55
import * as textStyles from '../../styles/text'
6-
import { GroupedComponent } from '../../app/types'
6+
import { GroupedComponent } from '../../overmind/types'
77
import Icon from '../common/Icon'
88
import { css } from 'emotion'
99

packages/node_modules/overmind-devtools/src/components/Console/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { createElement, SFC } from 'react'
2-
import { useOvermind } from '../../app'
2+
import { useOvermind } from '../../overmind'
33
import ConsoleRow from '../ConsoleRow'
44
import * as styles from './styles'
55

packages/node_modules/overmind-devtools/src/components/ConsoleRow/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { createElement, SFC, useState } from 'react'
22
import Inspector from '../Inspector'
33
import * as styles from './styles'
4-
import { AppMessage } from '../../app/types'
4+
import { AppMessage } from '../../overmind/types'
55

66
type Props = {
77
message: AppMessage<any>

0 commit comments

Comments
 (0)