import React from "react";
import DataDownload from "./DataDownload.js";
import fixtures from "../testing/fixtures/index.js";
import { SimpleButton } from "./SimpleButton.js";
import ReportDecorator from "./storybook/ReportDecorator.js";
export default {
component: DataDownload,
title: "Components/DataDownload",
decorators: [ReportDecorator],
};
export const simple = () => {
return (
<>
>
);
};
export const flattenNested = () => {
return (
<>
>
);
};
export const button = () => {
return (
<>
➥ Export}
/>
>
);
};