pleroma/app/soapbox/features/chats/components/chat-pane/blankslate.tsx

17 lines
529 B
TypeScript
Raw Normal View History

2022-08-18 09:52:04 -07:00
import React from 'react';
import { Button, Stack, Text } from 'soapbox/components/ui';
const Blankslate = () => (
<Stack justifyContent='center' alignItems='center' space={4} className='px-4 h-full'>
<Stack space={2}>
<Text weight='semibold' size='xl' align='center'>No messages yet</Text>
<Text theme='muted' align='center'>You can start a conversation with anyone that follows you.</Text>
</Stack>
{/* <Button theme='primary'>Message someone</Button> */}
</Stack>
);
export default Blankslate;