mirror of
https://github.com/fergalmoran/mixyboos.git
synced 2025-12-26 11:41:08 +00:00
11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
import * as React from "react";
|
|
|
|
const Datepicker: React.FC = () => {
|
|
return (
|
|
<div className="text-sm text-gray-600">
|
|
Pick a date, any date... OMG NO!!!! NOT THAT ONE!!
|
|
</div>
|
|
);
|
|
};
|
|
export default Datepicker;
|