You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We want providers to be able to add custom components to their pages.
Create a component that will allow admins to select a type of graph/chart and allow them to enter data.
The component should look like this and will have three options:
Notes:
The "delete" button should not be doing anything for now.
Make a state variable that will be be updated every time you any of the information on the component changes. This variable should have a schema that you can come up as you alter the component. It should look something like this.
{
"type": "pie" /* or "progress" or "line",
"data": {},
...
}
Make a schema that makes sense and make sure to create a type for it and include it in your PR.
The text was updated successfully, but these errors were encountered:
Description
We want providers to be able to add custom components to their pages.
Create a component that will allow admins to select a type of graph/chart and allow them to enter data.
The component should look like this and will have three options:
Notes:
Make a schema that makes sense and make sure to create a type for it and include it in your PR.
The text was updated successfully, but these errors were encountered: