sycamore_core/
lib.rs

1//! Core functionality for the Sycamore UI framework.
2//!
3//! This crate should not be used directly. Instead, use the `sycamore` crate which re-exports this
4//! crate.
5
6#![deny(missing_debug_implementations)]
7#![warn(missing_docs)]
8
9mod component;
10
11pub use component::*;