1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-24 23:50:19 +01:00
upscayl/renderer/components/Tabs.tsx

30 lines
612 B
TypeScript
Raw Normal View History

2023-03-18 18:08:50 +01:00
import React from "react";
type TabsProps = {
selectedTab: number;
setSelectedTab: (tab: number) => void;
};
const Tabs = ({ selectedTab, setSelectedTab }: TabsProps) => {
return (
2023-04-15 05:50:46 +02:00
<div className="tabs tabs-boxed mx-auto mb-2">
2023-03-18 18:08:50 +01:00
<a
className={`tab ${selectedTab === 0 && "tab-active"}`}
onClick={() => {
setSelectedTab(0);
}}>
Upscayl
</a>
<a
className={`tab ${selectedTab === 1 && "tab-active"}`}
onClick={() => {
setSelectedTab(1);
}}>
Settings
</a>
</div>
);
};
export default Tabs;