9 строки
166 B
TypeScript
9 строки
166 B
TypeScript
|
class c {
|
||
|
private renderExploreItem = ({
|
||
|
item: offer
|
||
|
}: {
|
||
|
item: OfferModel | undefined
|
||
|
}) => {
|
||
|
return "something";
|
||
|
}
|
||
|
}
|