reworked some backend things

This commit is contained in:
BOTAlex 2024-10-12 02:05:37 +02:00
parent e546b1945d
commit ba58ba5f59
5 changed files with 74 additions and 26 deletions

View file

@ -0,0 +1,11 @@
<script>
export let Title = "";
</script>
<div class="collapse collapse-arrow bg-base-100 text-start" {...$$restProps}>
<input type="radio" name="my-accordion-2" checked/>
<div class="collapse-title text-xl font-medium "><b>{Title}</b></div>
<div class="collapse-content ">
<slot/>
</div>
</div>