8 lines
204 B
Go
8 lines
204 B
Go
//go:build !(js && wasm)
|
|
|
|
package vdom
|
|
|
|
// IsClient is false on the server (native). Components use it to guard
|
|
// client-only effects (e.g. fetching) so they don't run during SSR.
|
|
const IsClient = false
|