feat: show ouput data

This commit is contained in:
karishmas6
2024-10-19 14:00:50 +05:30
parent 166f843dd7
commit 9f5f177581

View File

@@ -121,11 +121,12 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => {
<Grid item xs={12} md={9} lg={9} style={{ height: '100%', overflow: 'hidden' }}>
<div style={{ height: '100%', overflow: 'auto' }}>
<BrowserContent />
<InterpretationLog isOpen={showOutputData} setIsOpen={setShowOutputData} />
</div>
</Grid>
<Grid item xs={12} md={3} lg={3} style={{ height: '100%', overflowY: 'auto' }}>
<div className="right-side-panel" style={{ height: '100%' }}>
<RightSidePanel onFinishCapture={handleShowOutputData} />
<RightSidePanel onFinishCapture={handleShowOutputData} setShowOutputData={setShowOutputData} />
</div>
</Grid>
</Grid>