Created
April 18, 2021 09:23
-
-
Save AbhiAgarwal192/d3dcef27594a92d48a2b68643a5f4b5b to your computer and use it in GitHub Desktop.
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 React from 'react'; | |
import MicrofrontEnd from './MicrofrontEnd'; | |
function App() { | |
let host = process.env.REACT_APP_TABLE_HOST; | |
return ( | |
<div> | |
<MicrofrontEnd host={host} name="Table"/> | |
</div> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment