feat: implement DateService with timezone support and add EncryptionService with unit tests

This commit is contained in:
Firman Ramdhani
2026-01-19 10:58:34 +07:00
parent 309dcb48fe
commit ded7f1d192
12 changed files with 397 additions and 33 deletions
+2 -1
View File
@@ -1,9 +1,10 @@
import { DateServiceComponent } from '@repo/ui';
import { Route, Routes } from 'react-router-dom';
export default function AppModule() {
return (
<Routes>
<Route path="/example/*" element={<div>1</div>} />
<Route path="/example/*" element={<DateServiceComponent />} />
</Routes>
);
}