9 lines
No EOL
160 B
Text
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> |