mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
10 lines
262 B
JavaScript
10 lines
262 B
JavaScript
|
// deno-fmt-ignore-file
|
||
|
// deno-lint-ignore-file
|
||
|
// This code was bundled using `deno bundle` and it's not recommended to edit it manually
|
||
|
|
||
|
const makeParagraph = ()=>jsx("p", {
|
||
|
children: "A paragraph!"
|
||
|
});
|
||
|
export { makeParagraph as makeParagraph };
|
||
|
|