Skip to content

Instantly share code, notes, and snippets.

@gustfm
Created February 20, 2019 17:53
Show Gist options
  • Save gustfm/5a0deda40d7692f4c42afad8b7c802e9 to your computer and use it in GitHub Desktop.
Save gustfm/5a0deda40d7692f4c42afad8b7c802e9 to your computer and use it in GitHub Desktop.
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