import React from 'react'; import Page from 'components/layout/Page'; import MenuLayout from 'components/layout/MenuLayout'; import WebsiteSettings from './WebsiteSettings'; import AccountSettings from './AccountSettings'; import ProfileSettings from './ProfileSettings'; const menuOptions = ['Websites', 'Accounts', 'Profile']; export default function Settings() { return ( {option => { if (option === 'Websites') { return ; } else if (option === 'Accounts') { return ; } else if (option === 'Profile') { return ; } }} ); }