UNPKG
metadata-based-explorer1
Version:
latest (0.1.0)
0.1.0
Box UI Elements
developer.box.com/docs/box-ui-elements
box/box-ui-elements
metadata-based-explorer1
/
es
/
elements
/
content-explorer
/
Footer.js
16 lines
(14 loc)
•
290 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** * *
@file
Footer component *
@author
Box
*/
import
*
as
React
from
'react'
;
import
'./Footer.scss'
;
var
Footer
=
function
Footer
(
_ref
) {
var
children = _ref.
children
;
return
React
.
createElement
(
"footer"
, {
className
:
"bce-footer"
}, children); };
export
default
Footer
;