6 lines
101 B
TypeScript
6 lines
101 B
TypeScript
|
import { JSXElement } from "solid-js";
|
||
|
|
||
|
export function Debug(): JSXElement {
|
||
|
return <>debug</>;
|
||
|
}
|