diff --git a/src/components/header.tsx b/src/components/header.tsx index 2b40049..0040b22 100644 --- a/src/components/header.tsx +++ b/src/components/header.tsx @@ -1,5 +1,6 @@ import { cn } from "@/lib/utils"; import RunCode from "./run-code"; +import SettingsButton from "./settings-button"; interface HeaderProps { className?: string; @@ -12,9 +13,25 @@ export function Header({ return (
- + +
+
+
+ +
+
+
); }