File tree Expand file tree Collapse file tree 3 files changed +21
-5
lines changed Expand file tree Collapse file tree 3 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 11.codeBlock {
2+ text-align : left ;
23 padding : 10px ;
34 width : max-content ;
45 min-width : 500px ;
Original file line number Diff line number Diff line change 99 margin : 0 auto ;
1010 }
1111}
12-
13- .codeBlock {
14- text-align : left ;
15- margin-top : 20px ;
16- }
Original file line number Diff line number Diff line change 1+ import { Story , Meta } from '@storybook/react/types-6-0'
2+ import React from 'react'
3+ import { NoData as SetupNoData } from '../getStarted/components/NoData'
4+
5+ import './test-vscode-styles.scss'
6+ import '../shared/style.scss'
7+
8+ export default {
9+ args : {
10+ data : { }
11+ } ,
12+ component : SetupNoData ,
13+ title : 'Setup'
14+ } as Meta
15+
16+ const Template : Story = ( ) => {
17+ return < SetupNoData />
18+ }
19+
20+ export const NoData = Template . bind ( { } )
You can’t perform that action at this time.
0 commit comments