mirror of
https://github.com/NohamR/gitprofile.git
synced 2026-05-24 20:00:22 +00:00
10 lines
268 B
TypeScript
10 lines
268 B
TypeScript
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>,
|
|
);
|