Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
267 Bytes
import React from 'react';
import ReactDOM from 'react-dom/client';
import GitProfile from './components/gitprofile.tsx';
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<GitProfile config={CONFIG} />
</React.StrictMode>,
);