diff --git a/examples/next-with-app-router/src/app/page.tsx b/examples/next-with-app-router/src/app/page.tsx index 367b25b8ad..fc86cc74ca 100644 --- a/examples/next-with-app-router/src/app/page.tsx +++ b/examples/next-with-app-router/src/app/page.tsx @@ -1,6 +1,10 @@ import { Heading } from '@lmc-eu/spirit-web-react'; import { NextPage } from 'next'; -const Home: NextPage = () => Spirit App Router; +const Home: NextPage = () => ( + + Spirit App Router + +); export default Home; diff --git a/examples/next-with-pages-router/src/pages/index.tsx b/examples/next-with-pages-router/src/pages/index.tsx index 188cefa826..e3058e2774 100644 --- a/examples/next-with-pages-router/src/pages/index.tsx +++ b/examples/next-with-pages-router/src/pages/index.tsx @@ -1,6 +1,10 @@ import { Heading } from '@lmc-eu/spirit-web-react'; import { NextPage } from 'next'; -const Home: NextPage = () => Spirit Pages App; +const Home: NextPage = () => ( + + Spirit Pages App + +); export default Home;