File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
packages/app/src/app/pages/CliInstructions Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 1- import React , { useEffect } from 'react' ;
21import MaxWidth from '@codesandbox/common/lib/components/flex/MaxWidth' ;
32import Margin from '@codesandbox/common/lib/components/spacing/Margin' ;
4- import { useOvermind } from 'app/overmind ' ;
5- import { Title } from 'app/components/Title' ;
3+ import React , { FunctionComponent , useEffect } from 'react ' ;
4+
65import { SubTitle } from 'app/components/SubTitle' ;
6+ import { Title } from 'app/components/Title' ;
7+ import { useOvermind } from 'app/overmind' ;
78import { Navigation } from 'app/pages/common/Navigation' ;
8- import { Container , Content , Code } from './elements' ;
99
10- export const CLIInstructions : React . FC = ( ) => {
10+ import { Code , Container , Content } from './elements' ;
11+
12+ export const CLIInstructions : FunctionComponent = ( ) => {
1113 const {
1214 actions : { cliInstructionsMounted } ,
1315 } = useOvermind ( ) ;
@@ -18,7 +20,7 @@ export const CLIInstructions: React.FC = () => {
1820
1921 return (
2022 < MaxWidth >
21- < Margin vertical = { 1.5 } horizontal = { 1.5 } >
23+ < Margin horizontal = { 1.5 } vertical = { 1.5 } >
2224 < Container >
2325 < Navigation title = "CLI Import" />
2426
You can’t perform that action at this time.
0 commit comments