mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-11 10:36:53 +00:00
11 lines
153 B
TypeScript
11 lines
153 B
TypeScript
import React from 'react';
|
|
import './Code.scss';
|
|
|
|
const Code = ({ children }) => (
|
|
<pre>
|
|
<code>{children}</code>
|
|
</pre>
|
|
);
|
|
|
|
export default Code;
|