* File tree acts as VS Code's file tree * Adjust test for new expectations * Remove screenshot * Actually remove this screenshot * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
23 lines
641 B
TypeScript
23 lines
641 B
TypeScript
import { DebugFeatureTree } from 'components/DebugFeatureTree'
|
|
import { AstExplorer } from '../../AstExplorer'
|
|
import { EngineCommands } from '../../EngineCommands'
|
|
import { CamDebugSettings } from 'clientSideScene/ClientSideSceneComp'
|
|
|
|
export const DebugPane = () => {
|
|
return (
|
|
<div className="relative">
|
|
<section
|
|
data-testid="debug-panel"
|
|
className="absolute inset-0 p-2 box-border overflow-auto"
|
|
>
|
|
<div className="flex flex-col">
|
|
<EngineCommands />
|
|
<CamDebugSettings />
|
|
<AstExplorer />
|
|
<DebugFeatureTree />
|
|
</div>
|
|
</section>
|
|
</div>
|
|
)
|
|
}
|