Skip to content

Commit e11dcf6

Browse files
committed
align jsx in component
1 parent 6bd6f98 commit e11dcf6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

‎src/components/Start/Checks/SetupChecks.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import StepCheck from './StepCheck';
55
import VerifyButton from './VerifyButton';
66
import {Card, CardActions, CardHeader, CardText} from 'material-ui/Card';
77
import FlatButton from 'material-ui/FlatButton';
8-
// import {openDirectory, createPackageJson} from '../../../reducers/checks/action-setup';
8+
// import {openDirectory} from '../../../reducers/checks/action-setup';
99

1010
const SetupChecks: React.StatelessComponent<{
1111
checks: Builder.Checks

‎src/components/Start/Checks/SystemChecks.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ const SystemChecks: React.StatelessComponent<{
1616
}
1717
const status = [system.node, system.npm];
1818
return (
19-
<Card className='cr-check'>
20-
<CardHeader
21-
title='System Checks'
22-
subtitle='CodeRoad requires several key dependencies'
23-
/>
24-
<CardText>
25-
<DynamicStepper status={status}>
19+
<Card className='cr-check'>
20+
<CardHeader
21+
title='System Checks'
22+
subtitle='CodeRoad requires several key dependencies'
23+
/>
24+
<CardText>
25+
<DynamicStepper status={status}>
2626
<StepCheck
2727
label='Node >= 0.10'
2828
completed={system.node}
@@ -54,7 +54,7 @@ const SystemChecks: React.StatelessComponent<{
5454
<CardActions>
5555
<VerifyButton />
5656
</CardActions>
57-
</Card>
57+
</Card>
5858
);
5959
};
6060
export default SystemChecks;

0 commit comments

Comments
 (0)