Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
258 Bytes
import ReactDom from 'react-dom';
export function render( context ) {
ReactDom.render( context.layout, document.getElementById( 'wpcom' ) );
}
export function hydrate( context ) {
ReactDom.hydrate( context.layout, document.getElementById( 'wpcom' ) );
}