astro-resume/src/Resumable.astro
2023-07-16 12:10:40 +02:00

9 lines
No EOL
160 B
Text

---
export interface Props {
id: string;
data: Object;
}
const {id, data} = Astro.props;
---
<textarea hidden id={id}>{JSON.stringify(data)}</textarea>