添加背单词功能

This commit is contained in:
2025-10-30 13:48:05 +08:00
parent d2f9a58cca
commit b74e985770
14 changed files with 231 additions and 90 deletions

View File

@@ -0,0 +1,18 @@
import NavbarWrapper from "./NavbarWrapper";
interface Props {
children: React.ReactNode;
className?: string;
}
export default function NavbarCenterWrapper({ children, className }: Props) {
return (
<NavbarWrapper>
<div
className={`flex-1 flex justify-center items-center ${className}`}
>
{children}
</div>
</NavbarWrapper>
);
}