Skip to content

Commit a285fbf

Browse files
committed
ES5ify
1 parent 396c907 commit a285fbf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function inlineBundleToReact(bundle, key) {
2626
);
2727
}
2828

29-
export default function Ansi(props) {
29+
function Ansi(props) {
3030
const { text } = props;
3131
return (
3232
<code>
@@ -38,3 +38,5 @@ export default function Ansi(props) {
3838
Ansi.propTypes = {
3939
text: React.PropTypes.string,
4040
};
41+
42+
module.exports = Ansi;

0 commit comments

Comments
 (0)