import React from 'react';
import ReactDOM from 'react-dom';
import { DynamiqAssistant } from 'dynamiq-assistant';
const App = () => {
return (
<div>
<DynamiqAssistant
title="Dynamiq Assistant"
placeholder="Type your message..."
api={{
url: '',
streaming: true,
}}
/>
</div>
);
};
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<App />);