mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-16 06:58:46 +00:00
디렉터리 페이지 레이아웃 구현 및 디렉터리 생성 구현
This commit is contained in:
12
src/routes/(main)/directory/[[id]]/DirectoryEntry.svelte
Normal file
12
src/routes/(main)/directory/[[id]]/DirectoryEntry.svelte
Normal file
@@ -0,0 +1,12 @@
|
||||
<script lang="ts">
|
||||
interface Props {
|
||||
name: string;
|
||||
}
|
||||
|
||||
let { name }: Props = $props();
|
||||
</script>
|
||||
|
||||
<div>
|
||||
<!-- TODO -->
|
||||
<p>{name}</p>
|
||||
</div>
|
||||
Reference in New Issue
Block a user