mirror of
https://github.com/Mastermindzh/dotfiles.git
synced 2024-11-22 23:04:10 +01:00
13 lines
230 B
React
13 lines
230 B
React
|
import React, { Component } from 'react';
|
||
|
|
||
|
class componentName extends Component {
|
||
|
render() {
|
||
|
return (
|
||
|
<div>
|
||
|
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default componentName;
|