From eab87430950f1b6e33948cc7f430d2c3f2ad61f5 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Mon, 3 Mar 2025 11:40:05 +0800 Subject: [PATCH] feat(header): add settings button to header --- src/components/header.tsx | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) 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 (
- + +
+
+
+ +
+
+
); }