base panel

This commit is contained in:
StyleZhang
2024-02-19 17:58:54 +08:00
parent 3d3bc4c512
commit 6caca3aaf7
11 changed files with 34 additions and 96 deletions

View File

@ -3,10 +3,9 @@ import BasePanel from '../_base/panel'
const Panel: FC = () => {
return (
<BasePanel
inputsElement={<div>start panel inputs</div>}
outputsElement={<div>start panel outputs</div>}
/>
<BasePanel>
<div>start panel inputs</div>
</BasePanel>
)
}