import React from 'react' import { Link } from 'react-router-dom'; import './Home.css'; function Home() { return (
이름을 입력하세요
sessionStorage.setItem('name', event.target.value)} />
계산수학
) } function checking() { if (localStorage.getItem('name') === null || localStorage.getItem('name').length === 0) { alert('이름을 입력하세요') } else { alert('입력하신 이름은' + localStorage.getItem('name') + '입니다.') } } export default Home;