Advertisement
fakesamgregory

Master React in Webflow - Getting Started in VSCode

Nov 6th, 2024 (edited)
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React from 'react'
  2. import ReactDOM from 'react-dom'
  3.  
  4. function App() {
  5.     return <h1>Hello world!</h1>
  6. }
  7.  
  8. const element = document.getElementsByClassName('react')[0];
  9. // const element = document.getElementById('app');
  10. // const element = document.querySelector('react');
  11. const root = ReactDOM.createRoot(element);
  12. root.render(<App />);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement