feat: update course ui

This commit is contained in:
swve 2023-01-11 23:06:32 +01:00
parent b1d0ece5cd
commit b7ef575d83
2 changed files with 98 additions and 60 deletions

View file

@ -1,15 +1,14 @@
import '../styles/globals.css'
import StyledComponentsRegistry from '../services/lib/styled-registry'
import "../styles/globals.css";
import StyledComponentsRegistry from "../services/lib/styled-registry";
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html>
<head />
<body> <StyledComponentsRegistry>{children}</StyledComponentsRegistry></body>
<body>
{" "}
<StyledComponentsRegistry>{children}</StyledComponentsRegistry>
</body>
</html>
)
);
}