DEV Community

Cover image for Starting React
Khyle Vincent Cardosa
Khyle Vincent Cardosa

Posted on

Starting React

import React from 'react'
import ReactDOM from 'react-dom/client'

ReactDOM.createRoot(document.getElementById('root')).render(
    <React.StrictMode>
        <App />
    </React.StrictMode>
);
Enter fullscreen mode Exit fullscreen mode

LEZGOOOOOO

Top comments (0)