import { motion } from 'framer-motion'; import { NumericFormat } from 'react-number-format'; import { DetailInfoKeys, DetailInfoProps } from '@/entities/settlement/model/types'; export const DetailAmountInfo = ({ amountInfo, show, tid, onClickToShowInfo }: DetailInfoProps) => { const onClickToSetShowInfo = () => { if(!!onClickToShowInfo){ onClickToShowInfo(DetailInfoKeys.Amount); } }; return ( <>
금액 정보
); };