CSSモジュールズ
.listTitle {
font-size: 30px;
font-weight: bold;
}
import { useState } from "react";
import styles from "./Breadcrumb.module.css";
type Props = {
items: string[];
};
...
...
return (
<>
<p className={styles.listTitle}>パンくずリスト</p>
{items.length === 0 ? (
Last updated