@open-tender/store
Version:
A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our in-store POS API
11 lines (10 loc) • 357 B
TypeScript
import { IngredientsProps } from '@open-tender/ui';
import { ReactNode } from 'react';
declare const Ingredients: ({ title, subtitle, ingredients, close, children }: {
title: string;
subtitle?: string;
ingredients: string;
close: () => void;
children: (props: IngredientsProps) => ReactNode;
}) => ReactNode;
export default Ingredients;