interface FilterProps {
    buttonText?: string[];
    filterKeys: { [key: string]: boolean };
    flipFilter: () => void;
    initialFlip?: boolean;
    setFilter: (filter: string) => void;
    title?: string;
}

Properties

buttonText?: string[]
filterKeys: { [key: string]: boolean }
flipFilter: () => void
initialFlip?: boolean
setFilter: (filter: string) => void
title?: string