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 5cd0851b_e127_2364_891e_1a921b14ed73["react-router.test.ts"] 7600373a_3645_efb1_bcbb_e7c3fcb813ac["utils.ts"] 5cd0851b_e127_2364_891e_1a921b14ed73 --> 7600373a_3645_efb1_bcbb_e7c3fcb813ac ce18acb2_833c_61a7_166d_0fd7613ce1c0["candidate"] 5cd0851b_e127_2364_891e_1a921b14ed73 --> ce18acb2_833c_61a7_166d_0fd7613ce1c0 522399f9_a5a8_fa94_794a_917ab0d0a66d["fetchStyles"] 5cd0851b_e127_2364_891e_1a921b14ed73 --> 522399f9_a5a8_fa94_794a_917ab0d0a66d 22238dde_7df7_64d5_1424_a93cf2421b15["retryAssertion"] 5cd0851b_e127_2364_891e_1a921b14ed73 --> 22238dde_7df7_64d5_1424_a93cf2421b15 44ea7d66_6ac1_15b9_1cc7_d01c23a5ee04["test"] 5cd0851b_e127_2364_891e_1a921b14ed73 --> 44ea7d66_6ac1_15b9_1cc7_d01c23a5ee04 style 5cd0851b_e127_2364_891e_1a921b14ed73 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 Oxide 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: Oxide, directory: integrations/vite).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free