react-djogo
React library with components and tools for DjoGo
Install
yarn add react-djogo
Usage
import React, { Component } from "react";
import { ExampleComponent } from "react-djogo";
import "react-djogo/dist/index.css";
class Example extends Component {
render() {
return <ExampleComponent text="Test!" />;
}
}