Skip to content
Snippets Groups Projects
PlaidExternalMsg.usage.js 409 B
import React from 'react';

import { Section, TestModal } from '../../guide/components';

import PlaidExternalMsg from './PlaidExternalMsg';

export default () => (
  <Section>
    Plaid External Msg Modal
    <TestModal>
      {node => (
        <PlaidExternalMsg
          modalProps={{
            isCurrent: true,
            parent: node
          }}
        />
      )}
    </TestModal>
  </Section>
);