SectionCard
AppBaşlıklı form bölüm kartı; alt çizgili başlık ve içerik alanı. Hesap sayfalarındaki ayarlar / şifre değiştirme gibi bölümler için.
Preferences
Form fields go here.
<SectionCard title="Preferences">
<Input id="name" label="Display name" value={name} onChange={...} />
<Toggle id="notify" label="Email notifications" checked={notify} onChange={setNotify} />
</SectionCard>Profile
Personal information fields.
Security
Password change form.
<SectionCard title="Profile">
<UserProfileForm ... />
</SectionCard>
<SectionCard title="Security">
<ChangePasswordForm ... />
</SectionCard>