You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
923 B

2 years ago
import {
IonContent,
IonHeader,
IonPage,
IonTitle,
IonToolbar,
IonSegment,
IonLabel,
IonSegmentButton
} from "@ionic/react";
import "./Tab2.css";
const Tab2: React.FC = () => {
return (
<IonPage>
<IonHeader>
<IonToolbar>
<IonTitle>Вакансии</IonTitle>
</IonToolbar>
</IonHeader>
<IonContent fullscreen>
<IonHeader collapse="condense"></IonHeader>
<IonSegment
onIonChange={(e) => console.log("Segment selected", e.detail.value)}
>
<IonSegmentButton value="Instututs">
<IonLabel>Работа с опытом</IonLabel>
</IonSegmentButton>
<IonSegmentButton value="Grands">
<IonLabel>Работа без опыта/стажировка</IonLabel>
</IonSegmentButton>
</IonSegment>
</IonContent>
</IonPage>
);
};
export default Tab2;