// src/components/main/RecommendCategory.js import React from 'react'; import { useNavigate } from 'react-router-dom'; import { Paper, Typography, Box, Button } from '@mui/material'; const RecommendCategory = ({ categoryName, spendingCategory, totalSpending, baseDate }) => { const navigate = useNavigate(); return ( {baseDate} 기준 이런 구독은 어떠세요? 지난 달 {spendingCategory} 카테고리에서
가장 많은 지출이 있었네요!
); }; export default RecommendCategory;