b346f4fb59
To avoid white screens on reload, building a shared skeleton. Before https://github.com/user-attachments/assets/42bd0667-141d-4df4-9072-4077192cc71d After https://github.com/user-attachments/assets/e6031a72-2e25-47e3-a873-b89aaddfbd3a
15 lines
388 B
TypeScript
15 lines
388 B
TypeScript
import { PageContentSkeletonLoader } from '~/loading/components/PageContentSkeletonLoader';
|
|
import { styled } from '@linaria/react';
|
|
|
|
const StyledRightPanelContainer = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
`;
|
|
|
|
export const RightPanelSkeletonLoader = () => (
|
|
<StyledRightPanelContainer>
|
|
<PageContentSkeletonLoader />
|
|
</StyledRightPanelContainer>
|
|
);
|