mirror of
https://git.verdigado.com/NB-Public/simple-wkd.git
synced 2024-12-06 14:52:41 +01:00
9 lines
149 B
Text
9 lines
149 B
Text
---
|
|
export interface Props {
|
|
id: string;
|
|
}
|
|
|
|
const { id } = Astro.props;
|
|
---
|
|
|
|
<div class="absolute hidden h-full w-full cursor-wait" id={id}></div>
|