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;