Getting started

Fetching components

The front-end components can be accessed by performing the following steps:

  • Clone the repository

  • Copy preferred component and assets

  • Install necessary dependencies and packages by running npm install

GoMeddo components are created using React framework.

Packages

The GoMeddo components require gomeddo/sdk package to function

The GoMeddo sdk package can be installed through the following command

npm install @gomeddo/sdk

Certain components require additional packages to function. To prevent errors during usage, please check the documentation of the component.

GoMeddo instance

Certain components requires a GoMeddo instance to be passed through the prop.

GoMeddo instance can be created through the following code example

JavaScript
import GoMeddo from '@gomeddo/sdk';

const gm = GoMeddo(<your api key>);

Modification

The front-end components are open source and can be modified to the preferred use case.