'use client' import React from 'react'; import { IoCloseCircleOutline } from "react-icons/io5"; import style from './Modal.module.scss' import Platform from './Platform'; import Orientation from './Orientation'; interface Props { handleClose(): void labels: { title: string platform: any orientation: any } } const LangSwitcher: React.FC = (props) => { const { labels, handleClose } = props return (
{labels.title}
{ handleClose() }}>
); }; export default LangSwitcher;