8.2.0 • Published 9 months ago

@axelor/aos-mobile-project v8.2.0

Weekly downloads
-
License
AGPL-3.0-only
Repository
-
Last release
9 months ago

title: Project

tags: Readme

Presentation

This package was developed for the Axelor Open Mobile application.

The purpose of this package is to link with the project module of the Axelor Open Suite (AOS) ERP. It provides a simplified version of a number of processes available on the webapp. This package is compatible with AOS from version 8.2.0.

Usage

Install the library :

yarn add @axelor/aos-mobile-project

Compatibility with React v18.2.x and React Native v0.71.x.

To add this package in your application, you need to add it in the modules props of the component Application from @axelor/aos-mobile-core package.

import React from 'react';
import {Application} from '@axelor/aos-mobile-core';
import {ProjectModule} from '@axelor/aos-mobile-project';

const App = () => {
  return <Application modules={[ProjectModule]} mainMenu="auth_menu_user" />;
};

export default App;

Developpment

This package is developed as part of the Axelor Open Mobile application. To contribute, please go to the Github project and follow the guidelines. You will also find an installation guide to help you configure your environment.