libmodulor
Version:
A TypeScript library to create platform-agnostic applications
9 lines (8 loc) • 422 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { useDIContext } from './DIContextProvider.js';
import { UCContainer } from './UCContainer.js';
export function UCEntrypoint({ onPress, path, renderTouchable, uc }) {
const { wordingManager } = useDIContext();
const wording = wordingManager.uc(uc.def);
return (_jsx(UCContainer, { uc: uc, children: renderTouchable({ onPress, path, uc, wording }) }));
}