notFound function

DeactNode notFound()

Implementation

DeactNode notFound() {
  return fc(
    (ctx) => div(
      children: [
        h1(children: [txt('Not found')]),
        linkTo(
          href: '/',
          children: [txt('Back to home')],
        ),
      ],
    ),
  );
}