style(demo): add empty line after "use client" directive

This commit is contained in:
Daniel Luiz Alves
2025-07-15 16:39:37 -03:00
parent 9a0b7f5c55
commit b9147038e6

View File

@@ -1,4 +1,5 @@
"use client";
import { Suspense } from "react";
import DemoClient from "./components/demo-client";
@@ -10,4 +11,3 @@ export default function DemoPage() {
</Suspense>
);
}