Something went wrong. Try again.
Mirror for https://github.com/Ayc0/ayc0.github.io ayc0.github.io
Something went wrong. Try again.
521 B · 18 lines
Astro
at commit 6610c193
12345678910111213141516171819---export interface Props { id: string; height?: number;}
const { id, height = 500 } = Astro.props;if (id == null) { throw new Error('"id" is a required prop');}---
<iframe src={`https://codesandbox.io/embed/${id}?fontsize=14&theme=dark`} style={`width:100%; height:${height}px; border:0; border-radius: 4px; overflow:hidden;`} title="Light/Dark mode, React implementation" sandbox="allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts" loading="lazy"></iframe>