0
0
Fork 0
mirror of https://git.verdigado.com/NB-Public/simple-wkd.git synced 2024-12-06 14:52:41 +01:00
simple-wkd/website/src/components/cursor-catcher.astro
2023-04-16 16:19:16 +02:00

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>