tambah aduan sampah

This commit is contained in:
bipproduction
2025-10-20 14:01:08 +08:00
parent 4cec5e40ab
commit 75d8f6a1c3
12 changed files with 168 additions and 70 deletions

View File

@@ -0,0 +1,23 @@
import { Tree } from "@mantine/core";
// ✅ Valid data, all values are unique
const data = [
{
value: 'src',
label: 'src',
children: [
{ value: 'src/components', label: 'components' },
{ value: 'src/hooks', label: 'hooks' },
],
},
{ value: 'package.json', label: 'package.json' },
];
export default function DirPage() {
return (
<div>
<h1>Dir Page</h1>
<Tree data={data} />
</div>
);
}