MCPcopy Index your code
hub / github.com/remix-run/react-router / loadingIndicator

Function loadingIndicator

packages/create-react-router/index.ts:693–704  ·  view source on GitHub ↗
(args: {
  start: string;
  end: string;
  while: (...args: any) => Promise<any>;
  ctx: Context;
})

Source from the content-addressed store, hash-verified

691}
692
693async function loadingIndicator(args: {
694 start: string;
695 end: string;
696 while: (...args: any) => Promise<any>;
697 ctx: Context;
698}) {
699 let { ctx, ...rest } = args;
700 await renderLoadingIndicator({
701 ...rest,
702 noMotion: args.ctx.noMotion,
703 });
704}
705
706function title(text: string) {
707 return align(color.bgWhite(` ${color.black(text)} `), "end", 7) + " ";

Callers 3

installDependenciesStepFunction · 0.85
gitInitStepFunction · 0.85

Calls 1

renderLoadingIndicatorFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…