Created
February 17, 2023 06:06
-
-
Save rjpkuyper/03256988c6a5b502e097bfa571adb886 to your computer and use it in GitHub Desktop.
An updated version of the original
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export enum Paths { | |
PRODUCTS = '/products' | |
} | |
// pass the dependency, simply as optional variable | |
export const createUrl = (path: Paths, baseUrl = process.env.BASE_URL) => `${url}${path}` | |
export const productsUrl = createUrl(Paths.PRODUCTS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment