0.0.2-rv-2 • Published 2 years ago

@pd-solucoes/react-user-crud v0.0.2-rv-2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

react-user-crud

This libs is a frontend integration to adonis-basic-crud

Pre requisits

nodejs 17.6.0 or superior

Install the library

Project requirements

Its necessary add this variables in your .env file at host project.

Usage

You will need install react router dom to run exported router.

In order to use available routes you can use this template in your App.tsx file.

import React from 'react';
import './App.css';

import {Router} from "@pd-solucoes/react-user-crud"


function App() {
  return (
    <Router 
    imgUrl="YOUR_IMAGE_LINK"
    logoUrl="YOUR_IMAGE_LINK"
    projectDescription="YOUR_PROJECT_DESCRIPTION">

    </Router>
  );
}

export default App;