# parity-react-dapp **Repository Path**: parity-js/parity-react-dapp ## Basic Information - **Project Name**: parity-react-dapp - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-05 - **Last Updated**: 2021-07-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Parity React Dapp [](https://david-dm.org/Parity-JS/parity-react-dapp) Tweak Create React App via React App Rewire to best integrate with dapp development. ## Installation ### 1) Install this dependency ```bash $> npm install parity-react-dapp --save-dev ``` ### 2) Add the init script Add to your `package.json` file this script: ```json "scripts": { "init": "parity-react-dapp init" } ``` ### 3) Run the init script ```bash $> npm run init ``` This will add the base files (eslint config, gitignore file, etc.) to your project, add will add the required scripts to your `package.json` file. ## Requirements You must have an `src/index.js` file that _**exports your default component**_, eg: ```js /* src/index.js */ import React, { Component } from 'react'; export default class App extends Component { render () { return (