mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-04 10:52:18 +03:00
12 lines
222 B
JavaScript
12 lines
222 B
JavaScript
|
import React, { Component } from 'react';
|
||
|
import classnames from 'classnames';
|
||
|
import _ from 'lodash';
|
||
|
|
||
|
export default class DebugTile extends Component {
|
||
|
render() {
|
||
|
return null;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
window.debugTile = DebugTile;
|