settings.jsx 240 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 function Settings() { return ( <div> <h1>Settings page</h1> <div>username</div> <div>email</div> <div>birthday</div> <br /> <button>notification</button> </div> ); } export default Settings;