DEV Community

Discussion on: Push git cloned repository to your own on GitHub

Collapse
 
dance2die profile image
Sung M. Kim

That is a better option than what the post showed 👍

I've only learned of it recently when someone forked my repo and renamed it to create a useful library out of it.

GitHub logo edewit / react-use-sessionstorage

⚓ React hook for using local storage

react-use-sessionstorage

Fork of github.com/dance2die/react-use-loc... but then uses session storage instead of local storage.

How to use it

import React from 'react';
import ReactDOM from 'react-dom';
import useLocalStorage from 'react-use-sessionstorage';
import './styles.css';

function App() {
  const [item, setItem] = useSessionStorage('name', 'Initial Value');

  return (
    <div className="App">
      <h1>Set Name to store in Local Storage</h1>
      <div>
        <label>
          Name:{' '}
          <input
            type="text"
            placeholder="Enter your name"
            value={item}
            onChange={e => setItem(e.target.value)}
          />
        </label>
      </div>
    </div>
  );
}

const rootElement = document.getElementById('root');
ReactDOM.render(<App
Enter fullscreen mode Exit fullscreen mode