diff --git a/packages/cli/templates/default-react-plugin-package/src/components/ExampleComponent/ExampleComponent.test.tsx b/packages/cli/templates/default-react-plugin-package/src/components/ExampleComponent/ExampleComponent.test.tsx index c770cca8cb..c421e05209 100644 --- a/packages/cli/templates/default-react-plugin-package/src/components/ExampleComponent/ExampleComponent.test.tsx +++ b/packages/cli/templates/default-react-plugin-package/src/components/ExampleComponent/ExampleComponent.test.tsx @@ -5,14 +5,14 @@ import { ExampleComponent } from './ExampleComponent'; describe('ExampleComponent', () => { it('should render', async () => { - await renderInTestApp() + await renderInTestApp(); expect(screen.getByText('Hello World')).toBeInTheDocument(); }); it('should display a custom message', async () => { - await renderInTestApp() + await renderInTestApp(); expect(screen.getByText('Hello Example')).toBeInTheDocument(); - }) -}) + }); +}); diff --git a/packages/cli/templates/default-react-plugin-package/src/hooks/useExample/useExample.ts b/packages/cli/templates/default-react-plugin-package/src/hooks/useExample/useExample.ts index 911d255238..3c6e2c47bc 100644 --- a/packages/cli/templates/default-react-plugin-package/src/hooks/useExample/useExample.ts +++ b/packages/cli/templates/default-react-plugin-package/src/hooks/useExample/useExample.ts @@ -11,5 +11,5 @@ export function useExample() { useEffect(() => { alertApi.post({ message: 'Hello World!' }); - }, [alertApi]) + }, [alertApi]); } diff --git a/packages/cli/templates/default-react-plugin-package/src/index.ts.hbs b/packages/cli/templates/default-react-plugin-package/src/index.ts.hbs index a7ebb26f00..9b22677a3e 100644 --- a/packages/cli/templates/default-react-plugin-package/src/index.ts.hbs +++ b/packages/cli/templates/default-react-plugin-package/src/index.ts.hbs @@ -8,5 +8,5 @@ // In this package you might for example export components or hooks // that are useful to other plugins or modules. -export * from './components' -export * from './hooks' +export * from './components'; +export * from './hooks';