# fix
- authentication
- profile
- pencarian user
- forum
## No issue
This commit is contained in:
2024-05-20 10:55:13 +08:00
parent 66b9902d97
commit dbeb740d1f
58 changed files with 1374 additions and 386 deletions

View File

@@ -1,11 +1,15 @@
import MqttLoader from '@/util/mqtt_loader';
import RootStyleRegistry from './emotion';
import MqttLoader from "@/util/mqtt_loader";
import RootStyleRegistry from "./emotion";
export default function RootLayout({ children }: { children: React.ReactNode }) {
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<RootStyleRegistry>
<MqttLoader />
{children}</RootStyleRegistry>
{children}
</RootStyleRegistry>
);
}