6 lines
98 B
TypeScript
6 lines
98 B
TypeScript
|
import { h, VNode } from "preact";
|
||
|
|
||
|
export function SelectStandard(): VNode {
|
||
|
return <div />;
|
||
|
}
|