mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 11:05:47 +00:00
f39787152e
* Add repo wide prettier command to prepush * Make config file explict, remove formatAll to prepush * Fix react router typings * Add more typings * Fix event typings, fix transition children
11 lines
170 B
TypeScript
11 lines
170 B
TypeScript
import React from 'react';
|
|
import './Code.scss';
|
|
|
|
const Code = ({ children }: React.Props<{}>) => (
|
|
<pre>
|
|
<code>{children}</code>
|
|
</pre>
|
|
);
|
|
|
|
export default Code;
|