maproom 0.1.0

Semantic code search powered by embeddings and SQLite
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Detectors for React-specific code patterns.
//!
//! This module provides specialized detectors for identifying React components,
//! hooks, and JSX relationships in TypeScript/JavaScript codebases.

pub mod component;
pub mod hooks;
pub mod jsx;

pub use component::ComponentDetector;
pub use hooks::HookDetector;
pub use jsx::JsxRelationshipDetector;