scrimba
Using localStorage with React Hooks
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Using localStorage with React Hooks
AboutCommentsNotes
Using localStorage with React Hooks
Expand for more info
index.jsx
run
preview
console
import React from 'react';
import ReactDOM from 'react-dom/client';

import FCC from './components/FCC.jsx'

function App() {

return (
<div>
<FCC/>
</div>
)
}

ReactDOM.createRoot(document.getElementById('root')).render(<App />);
Console
/index.html?
-8:05