Created
March 9, 2018 21:40
-
-
Save quicksnap/e41a58cdf449eb9f950461e494a09395 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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