import { Component } from 'react'; import { observer } from 'mobx-react'; import RecipePreviewModel from '../../../models/RecipePreview'; type Props = { recipe: RecipePreviewModel; onClick: () => {}; }; class RecipeItem extends Component { render() { const { recipe, onClick } = this.props; return ( ); } } export default observer(RecipeItem);