Function RouterBase

Source
pub fn RouterBase<R, F, I>(props: RouterBaseProps<R, F, I>) -> View
where R: Route + 'static, F: FnOnce(ReadSignal<R>) -> View + 'static, I: Integration + 'static,
Expand description

A lower-level router component that takes an instance of your Route type. This is designed for struct Routes, which can be used to store additional information along with routes.

This is a very specific use-case, and you probably actually want Router!