13 lines
480 B
TypeScript
13 lines
480 B
TypeScript
|
import { ToggleOnClick } from "./common.tsx";
|
||
|
import { render_and_copy } from "./common.tsx";
|
||
|
|
||
|
render_and_copy(
|
||
|
<ToggleOnClick>
|
||
|
<img
|
||
|
src="https://staging.cohostcdn.org/attachment/f9a8c5c3-6ccc-4592-ac51-131eaa6872e3/weird-bug.gif"
|
||
|
alt="the camera rotates to reveal that the eggbug has numerous legs holding it up. gross! there is also a wall of notification mangos behind the bug."
|
||
|
/>
|
||
|
<p>hello world</p>
|
||
|
</ToggleOnClick>
|
||
|
);
|