Why: establish baseline web runtime scaffold before wave implementation. What: add react app structure, docker runtime assets, docs runbooks, and ignore policy updates. Rule: keep technical intent and repository workflow compliance.
6 lines
207 B
TypeScript
6 lines
207 B
TypeScript
import { getJson } from './client';
|
|
|
|
export async function loadDashboard(contextId: string): Promise<unknown> {
|
|
return getJson(`/api/restaurant/admin/config?contextId=${encodeURIComponent(contextId)}`);
|
|
}
|