mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-30 00:24:56 +00:00
7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
import { FeatureIdea } from './types'
|
|
|
|
export function dispatchEditIdea(idea: FeatureIdea) {
|
|
const event = new CustomEvent('editIdea', { detail: idea })
|
|
window.dispatchEvent(event)
|
|
}
|