14 lines
313 B
JavaScript
14 lines
313 B
JavaScript
|
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 = {};
|