mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-30 01:26:43 +08:00
16 lines
252 B
JavaScript
16 lines
252 B
JavaScript
import React from 'react';
|
|
|
|
export class Connect extends React.Component {
|
|
constructor(props){
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div>
|
|
CONNECT
|
|
</div>
|
|
);
|
|
}
|
|
}
|