react-code-dataset
/
next.js
/packages
/next
/src
/next-devtools
/dev-overlay
/components
/dialog
/dialog-header.tsx
| export type DialogHeaderProps = React.HTMLAttributes<HTMLDivElement> | |
| export function DialogHeader(props: DialogHeaderProps) { | |
| return ( | |
| <div data-nextjs-dialog-header {...props}> | |
| {props.children} | |
| </div> | |
| ) | |
| } | |