Skip to content

Commit d22305b

Browse files
authored
chore: cleanup (#18838)
1 parent 5847702 commit d22305b

File tree

2 files changed

+0
-43
lines changed

2 files changed

+0
-43
lines changed

packages/react/src/components/Grid/FlexGrid.stories.js

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -418,36 +418,6 @@ export const Default = (args) => {
418418
);
419419
};
420420

421-
export const Test1 = (args) => {
422-
// Grab the style from here to see the visual example
423-
//https://github.com/carbon-design-system/carbon/blob/main/packages/react/src/components/Grid/FlexGrid.stories.scss
424-
function DemoContent({ children }) {
425-
return (
426-
<div className="outside">
427-
<div className="inside">{children}</div>
428-
</div>
429-
);
430-
}
431-
return (
432-
<FlexGrid {...args} as="section">
433-
<Row>
434-
<Column>
435-
<DemoContent>1/4</DemoContent>
436-
</Column>
437-
<Column>
438-
<DemoContent>1/4</DemoContent>
439-
</Column>
440-
<Column>
441-
<DemoContent>1/4</DemoContent>
442-
</Column>
443-
<Column>
444-
<DemoContent>1/4</DemoContent>
445-
</Column>
446-
</Row>
447-
</FlexGrid>
448-
);
449-
};
450-
451421
Default.args = {
452422
as: 'div',
453423
fullWidth: false,

packages/react/src/components/Grid/Grid.stories.js

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -111,19 +111,6 @@ export const Condensed = () => {
111111
);
112112
};
113113

114-
export const Test2 = () => {
115-
// Grab the style from here to see the visual example
116-
// https://github.com/carbon-design-system/carbon/blob/main/packages/react/src/components/Grid/Grid.stories.scss
117-
return (
118-
<Grid condensed as="section">
119-
<Column sm={4} />
120-
<Column sm={4} />
121-
<Column sm={4} />
122-
<Column sm={4} />
123-
</Grid>
124-
);
125-
};
126-
127114
export const FullWidth = () => {
128115
// Grab the style from here to see the visual example
129116
// https://github.com/carbon-design-system/carbon/blob/main/packages/react/src/components/Grid/Grid.stories.scss

0 commit comments

Comments
 (0)