jcbowyer's picture
Clean HuggingFace deployment without binary files
e59d91d
Raw
History Blame Contribute Delete
264 Bytes
import React from 'react';
import Root from '@theme-original/Root';
import StructuredData from '@site/src/components/StructuredData';
export default function RootWrapper(props) {
return (
<>
<StructuredData />
<Root {...props} />
</>
);
}