16 lines
202 B
JavaScript
16 lines
202 B
JavaScript
|
import React, { Component } from 'react';
|
||
|
|
||
|
class Gearbox extends Component {
|
||
|
render() {
|
||
|
return (
|
||
|
<div>
|
||
|
{' '}
|
||
|
Gearbox
|
||
|
{' '}
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default Gearbox;
|