From 8d085b924089da2bc5efd0134e2f2613fd4af4a9 Mon Sep 17 00:00:00 2001 From: GeonWoo-LPS Date: Fri, 10 Jan 2025 14:05:44 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20DateTimePicker=20=EC=B6=9C=EB=A0=A5?= =?UTF-8?q?=20=EB=B0=8F=20=ED=95=9C=EA=B8=80=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.tsx | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 54a9995..bc8a926 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,15 +1,20 @@ import { Outlet } from 'react-router-dom'; +import { LocalizationProvider } from '@mui/x-date-pickers'; +import { AdapterDayjs } from '@mui/x-date-pickers/AdapterDayjs'; +import 'dayjs/locale/ko'; import './App.css'; import Footer from './components/Layout/Footer'; function App() { return ( -
-
- -
-
-
+ +
+
+ +
+
+
); }