HenryNguyen5 b94bede473 Add "No Unused Params and Locals" Linting Rule (#297)
Add "No Unused Params and Locals" Linting Rule
2017-10-18 19:29:49 -07:00

11 lines
153 B
TypeScript

import React from 'react';
import './Code.scss';
const Code = ({ children }) => (
<pre>
<code>{children}</code>
</pre>
);
export default Code;