Created
October 27, 2022 16:15
-
-
Save polluterofminds/9e37a67b9b1b0881e3b8fc0d0aa72019 to your computer and use it in GitHub Desktop.
Appjections App Container
This file contains 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 React from 'react' | |
import TopNav from "./TopNav"; | |
import Inbox from "./Inbox"; | |
const AppContainer = () => { | |
return ( | |
<div> | |
<TopNav /> | |
<Inbox /> | |
</div> | |
) | |
} | |
export default AppContainer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment