Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #370 from serlo/fix/define-serlo-root
Browse files Browse the repository at this point in the history
[DO NOT MERGE] fix(edusharing-render): Add serlo-root
  • Loading branch information
LarsTheGlidingSquirrel authored Apr 25, 2024
2 parents 0a86790 + d19abb6 commit ed88444
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,9 @@ import type { AppProps } from 'next/app'
import '../frontend/styles.css'

export default function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
return (
<div id="serlo-root">
<Component {...pageProps} />
</div>
)
}

0 comments on commit ed88444

Please sign in to comment.