Skip to content

Instantly share code, notes, and snippets.

View martinyung's full-sized avatar

Martin martinyung

View GitHub Profile
@martinyung
martinyung / hello.jsx
Last active June 25, 2017 07:39
conversational-form with react.js - cf setup reference
class Hello extends Component {
constructor(props) {
super(props):
this.cf = null; // <-- Conversational Form ref
}
...
}
export default Hello;
@martinyung
martinyung / index.html
Last active June 25, 2017 07:28
conversational-form with react.js - add CDN
<head>
...
<script type="text/javascript" src="https://cf-4053.kxcdn.com/conversational-form/0.9.4/conversational-form.min.js" crossorigin></script>
</head>