import { forwardRef, HTMLAttributes, ReactNode } from 'react'
import { Card } from 'ui'
export interface ResourceListProps extends HTMLAttributes {
children?: ReactNode
}
export const ResourceList = forwardRef(
({ children, className, ...props }, ref) => {
return (
{children}
)
}
)
ResourceList.displayName = 'ResourceList'