mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-29 17:18:43 +08:00
14 lines
271 B
JavaScript
14 lines
271 B
JavaScript
import React from 'react';
|
|
|
|
import './fab.scss';
|
|
|
|
export const Fab = (props) => {
|
|
return (
|
|
<div className="component_fab" onClick={props.onClick}>
|
|
<div className="content">
|
|
{props.children}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|