Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/shivamka1/react-module-starter

Starter kit to create a react module.
https://github.com/shivamka1/react-module-starter

modules reactjs

Last synced: about 8 hours ago
JSON representation

Starter kit to create a react module.

Awesome Lists containing this project

README

        

# react-module-starter
Starter kit to create a react module.

## Build module
This generates files under `dist/`
```
npm run build
npm link
```

## Use module in React App
```
npx create-react-app myapp
cd myapp
npm link react-module-starter
```
```javascript
cat src/App.js
import MyComponent from 'react-module-starter';

function App() {
return (




);
}

export default App;

```