mirror of
https://github.com/wassname/talk.git
synced 2026-07-13 17:45:56 +08:00
11 lines
202 B
TypeScript
11 lines
202 B
TypeScript
import { ReactElement } from "react";
|
|
|
|
export default function createNodeMock(element: ReactElement<any>) {
|
|
if (element.type === "div") {
|
|
return {
|
|
innerHtml: "",
|
|
};
|
|
}
|
|
return null;
|
|
}
|