'use client'; import { PlansModel } from '@/models/plans.model'; import Table from '../Table'; import { v4 } from 'uuid'; import PresenceAnimator from '../../hox/PresenceAnimator'; import Option from '../Option'; import { useState } from 'react'; interface IProps { plans: PlansModel; } const PlanTwo = ({ plans }: IProps) => { const [planItem, setPlanItem] = useState(null); return (

Mahabat görnüşini we bukjasyny saýlaň!

{plans.data.map((item) => item.on_radio ? (
{/* {plans.data.map((plan) => plan.on_radio ? ( ) : null )} */} ); }; export default PlanTwo;