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.
 
 
 

30 lines
744 B

import React, { useState } from "react";
import CurrentDateShamsi from "./CurrentDateShamsi";
import CurrentTime from "./CurrentTime";
import DateTime from "./DateTime";
function CurrentDateTime() {
const list = {
1: <CurrentDateShamsi />,
2: <CurrentTime />,
3: <DateTime />,
};
const [type, setType] = useState(1);
return (
<div className="w-full flex flex-col items-center">
<select
className="w-20 m-10 bg-surface border border-surfaceBorder"
onChange={(e) => setType(e.target.value)}
>
{Object.keys(list).map((option, index) => (
<option key={index}>{option}</option>
))}
</select>
{list[type]}
</div>
);
}
export default CurrentDateTime;