diff --git a/src/routes/(2)guides/(2)routing-and-navigation.mdx b/src/routes/(2)guides/(2)routing-and-navigation.mdx index 297161c488..393e7f72bd 100644 --- a/src/routes/(2)guides/(2)routing-and-navigation.mdx +++ b/src/routes/(2)guides/(2)routing-and-navigation.mdx @@ -126,13 +126,11 @@ render( **6. Create links to your routes** -The [``](/solid-router/reference/components/a) component provides navigation to an application's routes. -Alternatively, you can use the [native anchor tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a). -However, the `` component provides additional functionality including properties for CSS, `inactiveClass` and `activeClass`. +The [native anchor tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) provides soft navigation to an application's routes. ```jsx import { render } from "solid-js/web"; -import { Router, Route, A } from "@solidjs/router"; +import { Router, Route } from "@solidjs/router"; import Home from "./pages/Home"; import Users from "./pages/Users"; @@ -141,8 +139,8 @@ import NotFound from "./pages/NotFound"; const App = (props) => ( <>

Site Title

{props.children}