Created
November 13, 2021 15:05
-
-
Save hieptl/e30ea1a5df5dc53561fdc4dfcdad09df to your computer and use it in GitHub Desktop.
Friend.js - Discord Clone
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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