- )
-}
-
-export default PrivateRoutes;
\ No newline at end of file
diff --git a/src/utils/helpers/UrlHelper.ts b/src/utils/helpers/UrlHelper.ts
new file mode 100644
index 0000000..25cfe4e
--- /dev/null
+++ b/src/utils/helpers/UrlHelper.ts
@@ -0,0 +1,5 @@
+export class UrlHelper{
+ static Create(root:string,queryParamKey:string,queryParamValue:string):string{
+ return root +"?"+queryParamKey+"="+queryParamValue;
+ }
+}
\ No newline at end of file