쿠팡 검색창을 통해 물건을 구입하실 경우 블로그 운영에 매우 큰 도움이 됩니다

줄노트

import React from “react”;
import { Card, CardContent } from “@/components/ui/card”;

const MathSolutionNote = () => {
const lines = Array.from({ length: 20 }, (_, i) => i + 1); // 20줄 기본 세팅

return (

수학 풀이 노트

{lines.map((lineNumber) => (

{lineNumber}.

))}



);
};

export default MathSolutionNote;

Leave a Comment