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

https://github.com/erikvold/chrome-extension-options


https://github.com/erikvold/chrome-extension-options

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Important
This is a 0.x.x version and is therefore not ready for production use.

#Usage

```javascript
import React from 'react';
import ReactDOM from 'react-dom'
import { Options } from 'chrome-extension-options'

var options = [{
type: "string",
id: "username",
name: "Username",
defaultValue: ""
}];

ReactDOM.render(, document.getElementById('content'));
```