import React from 'react' /** * Sliding detail drawer panel * open: bool, onClose: fn, title: string, grain: string, children: ReactNode */ export default function DetailPanel({ open, onClose, title, grain, children }) { return ( <>