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

https://github.com/zef-dev/convoworks-intent-model-editor

Intent and entity editors for the Convoworks framework
https://github.com/zef-dev/convoworks-intent-model-editor

Last synced: 4 months ago
JSON representation

Intent and entity editors for the Convoworks framework

Awesome Lists containing this project

README

          

# Convoworks Intent Model Editor

> Intent and entity editors for the Convoworks framework

[![NPM](https://img.shields.io/npm/v/@zef-dev/convoworks-intent-model-editor.svg)](https://www.npmjs.com/package/@zef-dev/convoworks-intent-model-editor) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)

## Install

### npm

```bash
npm install --save @zef-dev/convoworks-intent-model-editor
```

### yarn

```bash
yarn add @zef-dev/convoworks-intent-model-editor
```

## Usage

#### React example

```jsx
import React, { Component } from 'react'
import {
IntentEditor,
EntityEditor
} from '@zef-dev/convoworks-intent-model-editor'
import '@zef-dev/convoworks-intent-model-editor/dist/index.css'

class IntentExample extends Component {
render() {
return (

)
}
}

class EntityExample extends Component {
render() {
return (

)
}
}
```

## License

MIT © [zef-dev](https://github.com/zef-dev)