You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
367 B
React
15 lines
367 B
React
2 years ago
|
import { Markdown } from './Markdown.jsx'
|
||
|
|
||
|
export const Solution = ({ userId, content }) => {
|
||
|
return (
|
||
|
<div class="solution">
|
||
|
<div class="solution-header">
|
||
|
<div>@{userId}</div>
|
||
|
</div>
|
||
|
<div class="solution-content">
|
||
|
<Markdown source={content} />
|
||
|
</div>
|
||
|
</div>
|
||
|
)
|
||
|
}
|