Created
February 20, 2019 17:53
-
-
Save gustfm/5a0deda40d7692f4c42afad8b7c802e9 to your computer and use it in GitHub Desktop.
This file contains 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 React from 'react' | |
import { | |
StoryContainer, | |
OutlinePhoto, | |
Photo, | |
Nickname | |
} from './style' | |
export default props => { | |
return ( | |
<StoryContainer> | |
<OutlinePhoto newStory={props.newStory}> | |
<Photo></Photo> | |
</OutlinePhoto> | |
<Nickname newStory={props.newStory}> | |
{props.nickname} | |
</Nickname> | |
</StoryContainer> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment