14 lines
241 B
JavaScript
14 lines
241 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
import type { Props } from '../types';
|
|
|
|
export default function Code({ children, attributes }: Props) {
|
|
return (
|
|
<pre>
|
|
<code {...attributes}>
|
|
{children}
|
|
</code>
|
|
</pre>
|
|
);
|
|
}
|