File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed
Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11import React from 'react' ;
22import { Story , Meta } from '@storybook/react/types-6-0' ;
3- import Logo from '.' ;
3+ import { Logo } from '.' ;
44
55export default {
66 title : 'Utils/Logo' ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from 'react';
22import { render , screen } from '@testing-library/react' ;
33import { renderWithTheme } from 'utils/tests/helpers' ;
44
5- import Logo from '.' ;
5+ import { Logo } from '.' ;
66
77describe ( '<Logo />' , ( ) => {
88 it ( 'should render the logo svg' , ( ) => {
Original file line number Diff line number Diff line change 11import React from 'react' ;
22import { Story , Meta } from '@storybook/react/types-6-0' ;
3- import Paragraph , { ParagraphProps } from '.' ;
3+ import { Paragraph , ParagraphProps } from '.' ;
44
55export default {
66 title : 'Typography/Paragraph' ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from 'react';
22import { screen } from '@testing-library/react' ;
33import { renderWithTheme } from 'utils/tests/helpers' ;
44
5- import Paragraph from '.' ;
5+ import { Paragraph } from '.' ;
66
77describe ( '<Paragraph />' , ( ) => {
88 it ( 'should render the paragraph with the default size' , ( ) => {
Original file line number Diff line number Diff line change 11import React from 'react' ;
22import { Story , Meta } from '@storybook/react/types-6-0' ;
3- import Small , { SmallProps } from '.' ;
3+ import { Small , SmallProps } from '.' ;
44
55export default {
66 title : 'Typography/Small' ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from 'react';
22import { screen } from '@testing-library/react' ;
33import { renderWithTheme } from 'utils/tests/helpers' ;
44
5- import Small from '.' ;
5+ import { Small } from '.' ;
66
77describe ( '<Small />' , ( ) => {
88 it ( 'should render the small with the default size' , ( ) => {
Original file line number Diff line number Diff line change 11import React from 'react' ;
22import { Story , Meta } from '@storybook/react/types-6-0' ;
3- import Title , { TitleProps } from '.' ;
3+ import { Title , TitleProps } from '.' ;
44
55export default {
66 title : 'Typography/Title' ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from 'react';
22import { screen } from '@testing-library/react' ;
33import { renderWithTheme } from 'utils/tests/helpers' ;
44
5- import Title from '.' ;
5+ import { Title } from '.' ;
66
77describe ( '<Title />' , ( ) => {
88 it ( 'should render the heading' , ( ) => {
You can’t perform that action at this time.
0 commit comments