ljosberinn/eslint-config-galex

View on GitHub
integration/remix-ts/app/routes/demos/about/whoa.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { Link } from 'remix';

export default function AboutIndex() {
  return (
    <div>
      <p>
        Whoa, this is a nested route! We render the <code>/about</code> layout
        route component, and its <code>Outlet</code> renders our route
        component. 🤯
      </p>
      <p>
        <strong>
          <Link to="..">
            Go back to the <code>/about</code> index.
          </Link>
        </strong>
      </p>
    </div>
  );
}