Skip to content

Instantly share code, notes, and snippets.

@hieptl
Created November 13, 2021 15:05
Show Gist options
  • Save hieptl/e30ea1a5df5dc53561fdc4dfcdad09df to your computer and use it in GitHub Desktop.
Save hieptl/e30ea1a5df5dc53561fdc4dfcdad09df to your computer and use it in GitHub Desktop.
Friend.js - Discord Clone
import Sidebars from './Sidebars';
import Main from './Main';
const Friend = () => {
return (
<div className="friends__container">
<Sidebars />
<Main />
</div>
);
};
export default Friend;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment