componentDidMount() { if (localStorage.getItem("name") === undefined) { return <Redirect to="/" />; } }
サインアップする際にlocalStorageの中身にnameを保存して、もし、localStorageの中身がなければ画面を遷移させるようにしたいのですが、どのようにすればいいでしょうか?
今の所、現在の形以外思いつきません。
あなたの回答
tips
プレビュー
投稿2020/05/08 14:06
componentDidMount() { if (localStorage.getItem("name") === undefined) { return <Redirect to="/" />; } }
サインアップする際にlocalStorageの中身にnameを保存して、もし、localStorageの中身がなければ画面を遷移させるようにしたいのですが、どのようにすればいいでしょうか?
今の所、現在の形以外思いつきません。
あなたの回答
tips
プレビュー