UNPKG

react-material-time-picker

Version:

TimePicker is a user interface component that allows the user to easily select a specific time. It provides an analog clock interface that is easy to use and intuitive. TimePicker can be easily integrated into other user interface components, making it a

12 lines (9 loc) 246 B
import React from 'react'; import ReactDOM from 'react-dom/client'; import Home from './view/index.js' const root = ReactDOM.createRoot(document.getElementById('root')); root.render( <React.StrictMode> <Home /> </React.StrictMode> );