import type { FC } from 'react'
import BasePanel from '../_base/panel'
const Panel: FC = () => {
return (
<BasePanel>
<div>start panel inputs</div>
</BasePanel>
)
}
export default Panel