react-router.test.ts — tailwindcss Source File
Architecture documentation for react-router.test.ts, a typescript file in the tailwindcss codebase. 5 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR cf176d26_707d_374c_6d10_564b3f921663["react-router.test.ts"] 9ffd1dda_9675_c514_373d_0f4ab4648249["utils.ts"] cf176d26_707d_374c_6d10_564b3f921663 --> 9ffd1dda_9675_c514_373d_0f4ab4648249 b7531519_9055_fbfa_5f69_ebc8586b0422["candidate"] cf176d26_707d_374c_6d10_564b3f921663 --> b7531519_9055_fbfa_5f69_ebc8586b0422 41c6e4f2_197a_5e83_1beb_584bbb4130fa["fetchStyles"] cf176d26_707d_374c_6d10_564b3f921663 --> 41c6e4f2_197a_5e83_1beb_584bbb4130fa 329ca5ee_2e24_1ec5_6818_8fdc3622dda9["retryAssertion"] cf176d26_707d_374c_6d10_564b3f921663 --> 329ca5ee_2e24_1ec5_6818_8fdc3622dda9 f11e3be9_51f8_140b_68b0_f58ddd082595["test"] cf176d26_707d_374c_6d10_564b3f921663 --> f11e3be9_51f8_140b_68b0_f58ddd082595 style cf176d26_707d_374c_6d10_564b3f921663 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { candidate, css, fetchStyles, json, retryAssertion, test, ts, txt } from '../utils'
const WORKSPACE = {
'package.json': json`
{
"type": "module",
"dependencies": {
"@react-router/dev": "^7",
"@react-router/node": "^7",
"@react-router/serve": "^7",
"@tailwindcss/vite": "workspace:^",
"@types/node": "^20",
"@types/react-dom": "^19",
"@types/react": "^19",
"isbot": "^5",
"react-dom": "^19",
"react-router": "^7",
"react": "^19",
"tailwindcss": "workspace:^",
"vite": "^5"
}
}
`,
'react-router.config.ts': ts`
import type { Config } from '@react-router/dev/config'
export default { ssr: true } satisfies Config
`,
'vite.config.ts': ts`
import { defineConfig } from 'vite'
import { reactRouter } from '@react-router/dev/vite'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [tailwindcss(), reactRouter()],
})
`,
'app/routes/home.tsx': ts`
export default function Home() {
return <h1 className="font-bold">Welcome to React Router</h1>
}
`,
'app/app.css': css`@import 'tailwindcss';`,
'app/routes.ts': ts`
import { type RouteConfig, index } from '@react-router/dev/routes'
export default [index('routes/home.tsx')] satisfies RouteConfig
`,
'app/root.tsx': ts`
import { Links, Meta, Outlet, Scripts, ScrollRestoration } from 'react-router'
import './app.css'
export function Layout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<head>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<Meta />
<Links />
</head>
<body>
{children}
// ... (119 more lines)
Domain
Dependencies
Source
Frequently Asked Questions
What does react-router.test.ts do?
react-router.test.ts is a source file in the tailwindcss codebase, written in typescript. It belongs to the OxideEngine domain.
What does react-router.test.ts depend on?
react-router.test.ts imports 5 module(s): candidate, fetchStyles, retryAssertion, test, utils.ts.
Where is react-router.test.ts in the architecture?
react-router.test.ts is located at integrations/vite/react-router.test.ts (domain: OxideEngine, directory: integrations/vite).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free