Getting Started
App Bootsrap
info
It is widely recommended to use the Boostrap application
At the following link you can find a Crono-App to download and start developing
Crono-App
You have to join Matchplat on GitHub and follow the Installation to use Crono Framework
package
Use Crono Utilities
Crono is composed of React components that automate the development of Matchplat applications.
After installing a CRA application:
Create React App
You can use Crono components as:
CronoBoost
CronoUser
To perform a quick installation of everything you need to run your application and start developing right away
import { CronoBoost, CronoUser } from "@matchplat/crono";
const Index = () => {
return (
<CronoBoost>
<CronoUser>
<Router />
</CronoUser>
</CronoBoost>
);
};