UNPKG

tymonial

Version:

A intuitive UI library which ease the process of collecting and viewing users feedbacks within yourt web applications.

11 lines (9 loc) 232 B
import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; const root = ReactDOM.createRoot(document.getElementById('root')); root.render( <React.StrictMode> <App /> </React.StrictMode> );