Skip to content

Instantly share code, notes, and snippets.

@GunaShekar02
Last active June 9, 2020 20:18
Show Gist options
  • Save GunaShekar02/a1d1362afbba9ba2fd0230e60a4c8e42 to your computer and use it in GitHub Desktop.
Save GunaShekar02/a1d1362afbba9ba2fd0230e60a4c8e42 to your computer and use it in GitHub Desktop.
Sidebar Component
import React, { Suspense } from "react";
import ContactsList from "../ContactList/ContactList";
import styles from "./Sidebar.module.css";
const Sidebar = () => {
return (
<div className={styles.container}>
<h2 className={styles.title}>Contacts Menu</h2>
<div className={styles.list}>
<Suspense fallback={<h3>Loading Contacts...</h3>}>
<ContactsList />
</Suspense>
</div>
</div>
);
};
export default Sidebar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment