Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/screens/Profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import styled from '@emotion/styled';

import Avatar from '../components/Avatar';
import * as Skeleton from '../components/Skeleton';
import Button from '../components/Button';

const Container = styled.div({
display: 'grid',
Expand Down Expand Up @@ -30,12 +31,14 @@ const Main = styled.div({

export default () => (
<Container>
<Left>
<Left>
<Avatar size="huge" appearance="secondary" />
<Skeleton.Line width={100} height={20} />
<Skeleton.Line width={80} />
</Left>
<Main>
<input placeholder="Enter your email address"></input>
<Button appearance="primary" outline="false">Save</Button>
<Skeleton.Line width="100%" style={{ gridArea: 'header' }} />
<Skeleton.Line width="100%" height="100%" style={{ gridArea: 'text' }} />
<Skeleton.Line width="100%" height="100%" style={{ gridArea: 'image' }} />
Expand Down