# react-fortress

> Build forms for React with ease

Latest version **1.0.2** (published 2020-08-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-fortress
pnpm add react-fortress
yarn add react-fortress
bun add react-fortress
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2020-08-18 |
| First published | 2020-08-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Node | >=10 |
| Dependencies | 1 |
| Unpacked size | 6.8 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | nikolap99 |
| Maintainers | nikolap99 |

## Links

- npm: https://www.npmjs.com/package/react-fortress
- Repository: https://github.com/nikolap99/react-fortress
- Homepage: https://github.com/nikolap99/react-fortress#readme
- Issues: https://github.com/nikolap99/react-fortress/issues
- npm.io page: https://npm.io/package/react-fortress

## Dependencies (1)

- [node-sass](https://npm.io/package/node-sass.md) 4.14.1

## Recent versions

- 1.0.2 (latest) — 2020-08-18
- 1.0.1 — 2020-08-18
- 1.0.0 — 2020-08-18

## README

# react-fortress

> Build forms for React with ease

[![NPM](https://img.shields.io/npm/v/react-fortress.svg)](https://www.npmjs.com/package/react-fortress) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)

## Install

```bash
npm install --save react-fortress
```

## Usage

```tsx
import React, { Component } from 'react';

import { FormMapper } from 'react-fortress';
import 'react-fortress/dist/index.css';

const elementsArray = [
  { placeholder: 'Full name...' },
  { placeholder: 'Email' },
  { placeholder: 'Password' }
];

class Example extends Component {
  render() {
    return <FormMapper inputElements={elementsArray} />;
  }
}
```

## License

MIT © [nikolap99](https://github.com/nikolap99)

---
_Source: https://npm.io/package/react-fortress · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
