@open-tender/ui
Version:
A component library for use with the Open Tender web app
13 lines (12 loc) • 419 B
TypeScript
import React from 'react';
import { Handlers, ScreenConfig } from '../types';
export interface IngredientsProps {
config: ScreenConfig;
modalContentConfig: ScreenConfig;
handlers: Handlers;
title: string;
subtitle?: string;
ingredients: string;
}
declare const Ingredients: ({ config, handlers, title, subtitle, ingredients }: IngredientsProps) => React.JSX.Element;
export default Ingredients;