정산조회 - 정산내역 리스트 및 상세
This commit is contained in:
@@ -17,10 +17,6 @@ export interface SortOptionsBoxProps {
|
||||
sortBy: SortByKeys;
|
||||
onCliCkToSort: (sortBy: SortByKeys) => void;
|
||||
};
|
||||
export enum AltMsgKeys {
|
||||
Fold = '접기',
|
||||
UnFold = '펼치기',
|
||||
};
|
||||
export enum DetailInfoSectionKeys {
|
||||
Amount = 'Amount',
|
||||
Publish = 'Publish',
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import { useEffect, useState } from 'react';
|
||||
import { IMAGE_ROOT } from '@/shared/constants/common';
|
||||
import { AltMsgKeys, InvoiceArrowProps } from '../model/types';
|
||||
import { AltMsgKeys } from '@/entities/common/model/types';
|
||||
import { InvoiceArrowProps } from '../model/types';
|
||||
|
||||
export const InvoiceArrow = ({ show }: InvoiceArrowProps) => {
|
||||
const [altMsg, setAltMsg] = useState<AltMsgKeys>(AltMsgKeys.Fold);
|
||||
|
||||
Reference in New Issue
Block a user