import React from 'react';
import { createRoot } from 'react-dom/client';
import { Agentation } from 'agentation';

const agentationRoot = document.createElement('div');
agentationRoot.id = 'agentation-root';
document.body.appendChild(agentationRoot);

const root = createRoot(agentationRoot);
root.render(<Agentation />);
