Home / File/ _index.tsx — ui Source File

_index.tsx — ui Source File

Architecture documentation for _index.tsx, a tsx file in the ui codebase. 1 imports, 0 dependents.

File tsx FrameworkTooling TemplateSync 1 imports 2 functions

Entity Profile

Dependency Diagram

graph LR
  a581a49e_25c7_58f0_98bd_6c05766aa43d["_index.tsx"]
  ce9dd226_41a3_f031_caf3_5378288c23c1["node"]
  a581a49e_25c7_58f0_98bd_6c05766aa43d --> ce9dd226_41a3_f031_caf3_5378288c23c1
  style a581a49e_25c7_58f0_98bd_6c05766aa43d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import type { MetaFunction } from "@remix-run/node";

export const meta: MetaFunction = () => {
  return [
    { title: "New Remix App" },
    { name: "description", content: "Welcome to Remix!" },
  ];
};

export default function Index() {
  return (
    <div className="font-sans p-4">
      <h1 className="text-3xl">Welcome to Remix</h1>
      <ul className="list-disc mt-4 pl-6 space-y-2">
        <li>
          <a
            className="text-blue-700 underline visited:text-purple-900"
            target="_blank"
            href="https://remix.run/start/quickstart"
            rel="noreferrer"
          >
            5m Quick Start
          </a>
        </li>
        <li>
          <a
            className="text-blue-700 underline visited:text-purple-900"
            target="_blank"
            href="https://remix.run/start/tutorial"
            rel="noreferrer"
          >
            30m Tutorial
          </a>
        </li>
        <li>
          <a
            className="text-blue-700 underline visited:text-purple-900"
            target="_blank"
            href="https://remix.run/docs"
            rel="noreferrer"
          >
            Remix Docs
          </a>
        </li>
      </ul>
    </div>
  );
}

Subdomains

Functions

Dependencies

  • node

Frequently Asked Questions

What does _index.tsx do?
_index.tsx is a source file in the ui codebase, written in tsx. It belongs to the FrameworkTooling domain, TemplateSync subdomain.
What functions are defined in _index.tsx?
_index.tsx defines 2 function(s): Index, meta.
What does _index.tsx depend on?
_index.tsx imports 1 module(s): node.
Where is _index.tsx in the architecture?
_index.tsx is located at packages/shadcn/test/fixtures/frameworks/remix/app/routes/_index.tsx (domain: FrameworkTooling, subdomain: TemplateSync, directory: packages/shadcn/test/fixtures/frameworks/remix/app/routes).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free