QDate.tsx 217 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
2
import React from "react";

3
export const QDate = () => {
Jiwon Yoon's avatar
Jiwon Yoon committed
4
5
6
7
8
9
  return (
    <div id="content" className="flex mt-4 w-full justify-center">
      <input type="date" className="w-11/12" disabled></input>
    </div>
  );
};