Skip to content

LinkOpts type

Home > @rimitive/router > LinkOpts

Options passed to Link factory

Link is DOM-only - routing with window.history is a web browser concept

Signature:

export type LinkOpts = {
el: ElFactory<DOMAdapterConfig>;
navigate: (path: string) => void;
};