react-server675fbba4
react-servertreemainexamplestyped-file-routerpagestodos.loading.tsx
examples/typed-file-router/pages/todos.loading.tsxtsx208 Bd350ccb7
"use client";

export default function TodosLoading() {
  return (
    <div
      data-testid="todos-loading"
      style={{ color: "gray", padding: "1rem 0" }}
    >
      Loading todos...
    </div>
  );
}