10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
"use client";
|
|
|
|
import { spotlightActions } from "./spotlight-store";
|
|
|
|
export { Spotlight } from "./component";
|
|
export { useRegisterSpotlightActions } from "./data-store";
|
|
export { openSpotlight };
|
|
|
|
const openSpotlight = spotlightActions.open;
|