import React from "react";
import Card from "./Card.js";
import { LayerToggle } from "./LayerToggle.js";
import ReportDecorator from "./storybook/ReportDecorator.js";
import {
ReportContext,
sampleSketchReportContextValue,
} from "../context/index.js";
export default {
component: LayerToggle,
title: "Components/LayerToggle",
decorators: [ReportDecorator],
};
const sampleContextValue = sampleSketchReportContextValue();
const checkedContext = {
...sampleContextValue,
visibleLayers: ["5e80c8a8cd44abca6e5268af"],
};
export const simpleUnchecked = () => (
);
export const simpleChecked = () => (
);
export const simpleSmallUnchecked = () => (
);
export const simpleSmallChecked = () => (
);
export const simpleUncheckedLabel = () => (
);
export const simpleCheckedLabel = () => (
);
export const unchecked = () => (
);
export const checked = () => (
);
export const emptyStringLayerId = () => (
);
export const noLayerId = () => (
);