added ui for sound settings

This commit is contained in:
2025-09-30 13:25:11 +01:00
parent 3903ff1cb8
commit 673df1a4f4
6 changed files with 226 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import Card from "../../UI/Card";
import CardHeader from "../../UI/CardHeader";
import SoundUpload from "./SoundUpload";
const SoundUploadCard = () => {
return (
<Card className="p-4">
<CardHeader title={"Sound upload"} />
<SoundUpload />
</Card>
);
};
export default SoundUploadCard;