import Box from '@mui/material/Box'; import { BackstoryPageProps } from '../components/BackstoryTab'; import { Message } from '../components/Message'; import { ChatMessage } from 'types/types'; const LoadingPage = (props: BackstoryPageProps) => { const preamble: ChatMessage = { role: 'assistant', type: 'text', status: 'done', sessionId: '', content: 'Please wait while connecting to Backstory...', timestamp: new Date(), metadata: null as any } return }; export { LoadingPage };