Files
porftolio-starter-kit/src/components/Section.stories.jsx
2026-08-18 00:50:08 +09:00

14 lines
351 B
JavaScript

import Section from './Section'
export default {
title: 'Content/Section',
component: Section,
args: {
eyebrow: '01 / Introduction',
title: 'A thoughtful section heading.',
children: <p style={{ maxWidth: '32rem' }}>Use sections to give each part of a case study a clear rhythm and hierarchy.</p>,
},
}
export const Default = {}