8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
export function createElement(tag: string, attrs: Record<string, any> = {}, ...children: any[]) {
|
|
return {
|
|
tag,
|
|
attrs,
|
|
children,
|
|
};
|
|
}
|