Newer
Older
taehui / qwilight-fe / src / app / [language] / etc / components / TitleItem.tsx
@Taehui Taehui on 6 Apr 334 bytes 2024-04-07 오전 8:25
import Title from "@/components/Title";
import Stack from "react-bootstrap/Stack";

export default function TitleItem({
  title,
  titleColor,
  text,
}: {
  title: string;
  titleColor: string;
  text: string;
}) {
  return (
    <Stack gap={2}>
      <Title title={title} titleColor={titleColor} />
      {text}
    </Stack>
  );
}