Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/gatewayapps/react-adaptivecards

A react wrapper for microsoft/adaptivecards
https://github.com/gatewayapps/react-adaptivecards

hacktoberfest

Last synced: about 1 month ago
JSON representation

A react wrapper for microsoft/adaptivecards

Awesome Lists containing this project

README

        

# react-adaptivecards
A react wrapper for [microsoft/adaptivecards](https://adaptivecards.io)

![](https://gatewayapps.github.io/react-adaptivecards/images/sample.png "Adaptive Cards")

### Installation
```js static
npm install --save react-adaptivecards
```

### Usage
```js static
import AdaptiveCard from 'react-adaptivecards'
```

### React-AdaptiveCard sample
```js

```

### Sample Card Payload
```json
{
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "TextBlock",
"text": "Here is a ninja cat"
},
{
"type": "Image",
"url": "http://adaptivecards.io/content/cats/1.png"
}
]
}
```