diff --git a/src/components/TestComponentNew/index.js b/src/components/TestComponentNew/index.js index ffab46a..8613559 100644 --- a/src/components/TestComponentNew/index.js +++ b/src/components/TestComponentNew/index.js @@ -1,7 +1,27 @@ import React from "react"; -const index = () => { - return
index
; +import { Calendar } from "react-multi-date-picker"; +import DatePicker from "react-multi-date-picker"; + +import persian from "react-date-object/calendars/persian"; +import persian_fa from "react-date-object/locales/persian_fa"; + +const TestComponentNew = () => { + return ( +
+ +
+ false} + /> +
+ ); }; -export default index; +export default TestComponentNew;