import { Meta } from '@storybook/react';
import React from 'react';
import Button from '../button';
import { Card, CardSubsection, CardSection } from '.';
import Space from '../space';
export default {
title: '数据展示/卡片 Card',
component: Card,
subcomponents: { Section: CardSection, Subsection: CardSubsection },
} as Meta;
export const 基本使用 = () => (
Button}
footer={
}
title="title"
>
内容
);
export const Section使用 = () => (
Button} title="title">
Button} title="Section 标题">
Section 内容
Button} title="Section 标题">
Section 内容
Button} title="Section 标题">
Section 内容
);
export const Subsection使用 = () => (
John Smith
111
222
333
444
555
666
内容
);