Skip to content

Instantly share code, notes, and snippets.

@AbhiAgarwal192
Created April 18, 2021 09:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AbhiAgarwal192/d3dcef27594a92d48a2b68643a5f4b5b to your computer and use it in GitHub Desktop.
Save AbhiAgarwal192/d3dcef27594a92d48a2b68643a5f4b5b to your computer and use it in GitHub Desktop.
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