mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
Added missing link for #[server] macro (#2437)
* Added missing link for #[server] macro Added missing link for #[server] macro * Removed spurious entry
This commit is contained in:
parent
841d7a690a
commit
d1560f9e1f
2 changed files with 1 additions and 8 deletions
|
@ -1,7 +0,0 @@
|
|||
|
||||
CREATE TABLE IF NOT EXISTS todos
|
||||
(
|
||||
id INTEGER NOT NULL PRIMARY KEY,
|
||||
title VARCHAR,
|
||||
completed BOOLEAN
|
||||
);
|
|
@ -28,7 +28,7 @@
|
|||
//!
|
||||
//! ### `#[server]`
|
||||
//!
|
||||
//! The [`#[server]`][server] macro allows you to annotate a function to
|
||||
//! The [`#[server]`](../leptos/attr.server.html) macro allows you to annotate a function to
|
||||
//! indicate that it should only run on the server (i.e., when you have an `ssr` feature in your
|
||||
//! crate that is enabled).
|
||||
//!
|
||||
|
|
Loading…
Reference in a new issue