This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/website/src/components/CommunitySection/CommunitySection.stories.js

14 lines
313 B
JavaScript
Raw Normal View History

2021-03-23 12:07:19 +00:00
import React from "react";
import CommunitySection from "./CommunitySection";
export default {
title: "Layout/CommunitySection",
component: CommunitySection,
};
const Template = (args) => <CommunitySection {...args} />;
export const Default = Template.bind({});
Default.parameters = {};
Default.args = {};