tools/src/components/Gearbox.js

16 lines
202 B
JavaScript
Raw Normal View History

import React, { Component } from 'react';
class Gearbox extends Component {
render() {
return (
<div>
{' '}
Gearbox
{' '}
</div>
);
}
}
export default Gearbox;