10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
export function useWarrenPath() {
|
|
const store = useWarrenStore();
|
|
|
|
if (store.current == null) {
|
|
return null;
|
|
}
|
|
|
|
return `${store.current.warrenId}${store.current.path}`;
|
|
}
|