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