import React from 'react'; import { Card, CardContent, Typography, Paper, } from "@material-ui/core"; import styled from "styled-components"; const Solution = ({ solution }) => { const author = solution.author? solution.author : 'anonymous'; return ( { solution.result } by {author} ) }; const PaperWrapper = styled(Card)` padding: 10px; margin: 25px; `; export default Solution;