mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* feat: add typings for react-messenger-checkbox * fix(type-definition): major.minor version * fix(lint): type definition * fix(lint): rules * fix(type): delete default export * fix(type): export * fix(tsconfig): strictNullChecks set to true
14 lines
336 B
TypeScript
14 lines
336 B
TypeScript
import * as React from 'react';
|
|
import MessengerCheckbox from 'react-messenger-checkbox';
|
|
|
|
const PAGE_ID = '';
|
|
const APP_ID = '';
|
|
const ORIGIN = '';
|
|
const USER_REF = '';
|
|
|
|
class Test extends React.Component {
|
|
render() {
|
|
return <MessengerCheckbox pageId={PAGE_ID} appId={APP_ID} origin={ORIGIN} userRef={USER_REF} />;
|
|
}
|
|
}
|