Removes ReactWrapperView

This commit is contained in:
Josh Perez
2022-12-21 22:07:45 -05:00
committed by GitHub
parent dec23725e5
commit 0b83ab497d
25 changed files with 444 additions and 396 deletions

View File

@@ -16,7 +16,6 @@ const i18n = setupI18n('en', enMessages);
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
title: text('title', overrideProps.title || ''),
description: text('description', overrideProps.description || ''),
buttonText: text('buttonText', overrideProps.buttonText || ''),
i18n,
onClose: action('onClick'),
});
@@ -35,7 +34,6 @@ export function CustomStrings(): JSX.Element {
{...createProps({
title: 'Real bad!',
description: 'Just avoid that next time, kay?',
buttonText: 'Fine',
})}
/>
);