An open API service indexing awesome lists of open source software.

https://github.com/pinussilvestrus/generator-mantra-react

A Yeoman for React Modules based on our Mantra philosophy (https://kadirahq.github.io/mantra/)
https://github.com/pinussilvestrus/generator-mantra-react

mantra-philosophy schulcloud yeoman

Last synced: 8 months ago
JSON representation

A Yeoman for React Modules based on our Mantra philosophy (https://kadirahq.github.io/mantra/)

Awesome Lists containing this project

README

          

# generator-mantra-react
A Yeoman Generator for React Modules based on our Mantra philosophy (https://kadirahq.github.io/mantra/)

[![Downloads](https://img.shields.io/npm/dt/generator-mantra-react.svg)](https://www.npmjs.com/package/generator-mantra-react)

## Getting Started

```bash
npm install -g yo
npm install -g generator-mantra-react
yo mantra-react
```

INFO: The names of the module and the subsection should be different!

After the module was generated, you have to register it in your client's index.js

```js
/** src/modules/index.js**/

import Core from './core';

import Static from './static';
import Login from './login';

import Backend from './backend';
import Dashboard from './dashboard';
/** other modules ....*/
import from './';

export default {
Core,
Backend,
Dashboard,
Settings,
Login,
Content,
Lessons,
,
Static
};
```

Have fun!

## License

GPL-3.0