mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
12 lines
348 B
TypeScript
12 lines
348 B
TypeScript
|
import LayoutWithPlaceholders from '@/features/ide-react/components/layout/layout-with-placeholders'
|
||
|
|
||
|
// This is filled with placeholder content while the real content is migrated
|
||
|
// away from Angular
|
||
|
export default function IdePage() {
|
||
|
return (
|
||
|
<div id="ide-react-page">
|
||
|
<LayoutWithPlaceholders shouldPersistLayout />
|
||
|
</div>
|
||
|
)
|
||
|
}
|