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