6 lines
205 B
TypeScript
6 lines
205 B
TypeScript
import type { ClientApp } from "../types";
|
|
|
|
export function useDemoApp(apps: ClientApp[]) {
|
|
const [currentApp] = apps.filter(({ description }) => description === '__test_key');
|
|
return currentApp;
|
|
} |