/embedding-react

Base sample for embedding React apps using webpack

Primary LanguageTypeScriptMIT LicenseMIT

How to Embed a React Application in Any Website

Base sample for embedding React apps using webpack

  1. How to Embed a React Application in Any Website
  2. Your First React Typescript Project: a Todo List App
  3. https://www.carlrippon.com/creating-react-and-typescript-apps-with-webpack/
  4. How to Create Embedded React Widget

Commands

yarn start # Start development environment
yarn build # Build using production environment

Usage sample

<script src="./bundle.js" type="text/javascript"></script>
<script type="text/javascript">
    MyApp.init({
            clientId: 'f951b1bc-7782-11eb-9439-0242ac130002',
            patientId: '003acd9c-7783-11eb-9439-0242ac130002'
        }
    );
</script>