react-mapfilter
Version:
These components are designed for viewing data in Mapeo. They share a common interface:
24 lines (18 loc) • 452 B
JavaScript
// @flow
import React, { useState } from 'react'
import { action } from '@storybook/addon-actions'
// import { linkTo } from '@storybook/addon-links'
import PrintButton from './PrintButton'
export default {
title: 'ReportView/components/PrintButton'
}
export const defaultStory = () => (
<PrintButton
paperSize="a4"
changePaperSize={action('paper')}
requestPrint={action('print')}
/>
)
defaultStory.story = {
name: 'default'
}