mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 02:55:41 +00:00
b94bede473
Add "No Unused Params and Locals" Linting Rule
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;
|