jbilcke-hf's picture
jbilcke-hf HF Staff
working on some new features
3d4392e
raw
history blame
234 Bytes
"use client"
import { ClapProject, ClapSegment } from "@/lib/clap/types"
export async function resolve(segment: ClapSegment, clap: ClapProject): Promise<JSX.Element> {
return (
<div
className="w-full h-full"
/>
)
}