import React from'react';import{Link}from"react-router-dom";exportconstHome=()=><div><h1>[Company Website]</h1><nav><Link to="about">[About]</Link><Link to="events">[Events]</Link><Link to="products">[Products]</Link><Link to="contact">[Contact Us]</Link></nav></div>exportconstAbout=()=><section><h1>[About the Company]</h1></section>exportconstEvents=()=><section><h1>[Events Calendar]</h1></section>exportconstProducts=()=><section><h1>[Products Catalog]</h1></section>exportconstContact=()=><section><h1>[Contact Us]</h1></section>exportconstWhoops404=({location})=><div><h1>Resource not found at '{location.pathname}'</h1></div>