File tree Expand file tree Collapse file tree 5 files changed +27
-0
lines changed Expand file tree Collapse file tree 5 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ import React from 'react' ;
3
+ import { render } from '@testing-library/react' ;
4
+
5
+ import { WizardFooter } from '.' ;
6
+
7
+ describe ( 'packages/wizard-footer' , ( ) => {
8
+ test ( 'condition' , ( ) => {
9
+
10
+ } )
11
+ } )
Original file line number Diff line number Diff line change
1
+
2
+ import { css } from '@leafygreen-ui/emotion' ;
3
+
4
+ export const baseStyles = css `` ;
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+ import { WizardFooterProps } from './WizardFooter.types' ;
3
+
4
+ export function WizardFooter ( { } : WizardFooterProps ) {
5
+ return < div > your content here</ div > ;
6
+ }
7
+
8
+ WizardFooter . displayName = 'WizardFooter' ;
Original file line number Diff line number Diff line change
1
+ export interface WizardFooterProps { }
Original file line number Diff line number Diff line change
1
+
2
+ export { WizardFooter } from './WizardFooter' ;
3
+ export { type WizardFooterProps } from './WizardFooter.types' ;
You can’t perform that action at this time.
0 commit comments