Skip to content

Instantly share code, notes, and snippets.

@quicksnap
Created March 9, 2018 21:40
Show Gist options
  • Save quicksnap/e41a58cdf449eb9f950461e494a09395 to your computer and use it in GitHub Desktop.
Save quicksnap/e41a58cdf449eb9f950461e494a09395 to your computer and use it in GitHub Desktop.
import * as React from 'react';
import { Div } from 'glamorous';
import { BigPlaceholder } from '../parts/BigPlaceholder';
type PersonDetailProps = { id: string };
export class PersonDetail extends React.Component<PersonDetailProps> {
render() {
return (
<LeftRightColPadding>
<TitleText>First McLastname</TitleText>
<RatioImage />
<TwoUp
left={<DescriptionBlock content={loremText(500)} />}
right={
<MetaStack>
<MetaStackItem />
<MetaStackItem />
<MetaStackItem />
</MetaStack>
}
/>
<PeopleTagSet label="Interests">
<PeopleTagItem />
<PeopleTagItem />
<PeopleTagItem />
<PeopleTagItem />
</PeopleTagSet>
{/* Skills */}
<PeopleTagSet label="Skills">
<PeopleTagItem />
<PeopleTagItem />
<PeopleTagItem />
<PeopleTagItem />
</PeopleTagSet>
<CoursesBoxList />
</LeftRightColPadding>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment