landing + single company + auth
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import { twMerge } from "tailwind-merge";
|
||||
import { useParams } from "react-router-dom";
|
||||
|
||||
/**
|
||||
* Concatenates truthy classes into a space-separated string.
|
||||
@@ -9,3 +10,12 @@ import { twMerge } from "tailwind-merge";
|
||||
export const clx = (...classes: (string | boolean | undefined)[]): string => {
|
||||
return twMerge(classes.filter(Boolean).join(" "));
|
||||
};
|
||||
|
||||
export const buildPath = (path: string, slug2?: string): string => {
|
||||
if (slug2) {
|
||||
return `/${slug2}/${path}`;
|
||||
} else {
|
||||
const { slug } = useParams() as { slug: string };
|
||||
return `/${slug}/${path}`;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user