Feat: add PromptManagement page #3221 (#3650)

### What problem does this PR solve?

Feat: add PromptManagement page #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2024-11-26 16:55:44 +08:00
committed by GitHub
parent 5337cad7e4
commit 98cf1c2a9d
6 changed files with 68 additions and 1 deletions

View File

@ -0,0 +1,5 @@
import { PropsWithChildren } from 'react';
export function Title({ children }: PropsWithChildren) {
return <span className="font-bold text-xl">{children}</span>;
}