mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
export const foo = () => ({
|
|
render: async () => {
|
|
ReactDOM.render(
|
|
<Bar {...config} attribute={await baz} />,
|
|
domNode,
|
|
() => {}
|
|
);
|
|
},
|
|
});
|