Skip to content

Commit 453d8ec

Browse files
committed
cleanup @emotion imports
1 parent e5072dc commit 453d8ec

File tree

17 files changed

+0
-17
lines changed

17 files changed

+0
-17
lines changed

‎web-app/src/components/Card/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Card as AlifdCard } from '@alifd/next'
22
import * as React from 'react'
3-
import { css, jsx } from '@emotion/core'
43

54
const styles = {
65
card: {

‎web-app/src/components/Checkbox/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import * as React from 'react'
2-
import { css, jsx } from '@emotion/core'
32

43
const styles = {
54
box: {

‎web-app/src/components/Debugger/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import * as React from 'react'
22
import * as T from 'typings'
3-
import { css, jsx } from '@emotion/core'
43

54
interface Props extends T.MachineContext {
65
state: string

‎web-app/src/components/Divider.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import * as React from 'react'
2-
import { css, jsx } from '@emotion/core'
32

43
const styles = {
54
divider: {

‎web-app/src/components/Error/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { ApolloError } from 'apollo-boost'
22
import { GraphQLError } from 'graphql'
33
import * as React from 'react'
4-
import { css, jsx } from '@emotion/core'
54

65
const styles = {
76
container: {

‎web-app/src/components/ProcessEvents/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { Message as AlifdMessage } from '@alifd/next'
22
import * as React from 'react'
33
import * as T from 'typings'
4-
import { css, jsx } from '@emotion/core'
54

65
interface Props {
76
processes: T.ProcessEvent[]

‎web-app/src/components/StepHelp/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Balloon } from '@alifd/next'
22
import * as React from 'react'
3-
import { css, jsx } from '@emotion/core'
43
import Button from '../Button'
54

65
const styles = {

‎web-app/src/components/Workspace/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import * as React from 'react'
2-
import { css, jsx } from '@emotion/core'
32

43
interface Props {
54
children: React.ReactElement

‎web-app/src/containers/Continue/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import * as React from 'react'
22
import * as CR from 'typings'
33
import * as G from 'typings/graphql'
4-
import { css, jsx } from '@emotion/core'
54
import Button from '../../components/Button'
65
import Card from '../../components/Card'
76

‎web-app/src/containers/LoadingPage.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import * as React from 'react'
22
import * as T from 'typings'
3-
import { css, jsx } from '@emotion/core'
43
import Loading from '../components/Loading'
54
import Message from '../components/Message'
65

‎web-app/src/containers/New/NewPage.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import * as React from 'react'
22
import * as G from 'typings/graphql'
3-
import { css, jsx } from '@emotion/core'
43
import TutorialList from './TutorialList'
54

65
const styles = {

‎web-app/src/containers/New/TutorialList/TutorialItem.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import * as React from 'react'
2-
import { css, jsx } from '@emotion/core'
32
import Card from '../../../components/Card'
43

54
const styles = {

‎web-app/src/containers/Tutorial/CompletedPage.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import * as React from 'react'
22
import * as CR from 'typings'
3-
import { css, jsx } from '@emotion/core'
43
import Button from '../../components/Button'
54

65
const styles = {

‎web-app/src/containers/Tutorial/LevelPage/Level.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import * as React from 'react'
22
import * as T from 'typings'
33
import * as G from 'typings/graphql'
4-
import { css, jsx } from '@emotion/core'
54
import Button from '../../../components/Button'
65
import Markdown from '../../../components/Markdown'
76
import ProcessEvents from '../../../components/ProcessEvents'

‎web-app/src/containers/Tutorial/LevelPage/Step.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import * as React from 'react'
22
import * as T from 'typings'
3-
import { css, jsx } from '@emotion/core'
43
import Checkbox from '../../../components/Checkbox'
54
import Markdown from '../../../components/Markdown'
65
import StepHelp from '../../../components/StepHelp'

‎web-app/stories/Checkbox.stories.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { storiesOf } from '@storybook/react'
22
import React from 'react'
3-
import { css, jsx } from '@emotion/core'
43
import Checkbox from '../src/components/Checkbox'
54
import SideBarDecorator from './utils/SideBarDecorator'
65

‎web-app/stories/utils/SideBarDecorator.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import * as React from 'react'
2-
import { css, jsx } from '@emotion/core'
32

43
const styles = {
54
container: {

0 commit comments

Comments
 (0)