mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
10 lines
135 B
TypeScript
10 lines
135 B
TypeScript
|
export function A() {
|
||
|
return (
|
||
|
<div>
|
||
|
<a href="#">foo</a>
|
||
|
<p>hello</p>
|
||
|
<img src="#" alt="" />
|
||
|
</div>
|
||
|
);
|
||
|
}
|