UNPKG
react-app-shell
Version:
latest (1.0.0)
1.0.0
react打包脚本和example, 这里的版本请忽略
react-app-shell
/
activity
/
src
/
views
/
year-end-welfare
/
component
/
footer.js
14 lines
(9 loc)
•
298 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
React
from
'react'
;
import
styles
from
'./styles.less'
;
function
Footer
(
{headerUrl}
) {
return
(
<
footer
className
=
{styles[
'
footer
']}>
<
div
className
=
{styles[
'
info
']}>
本活动最终解释权归魔力耳朵所有
</
div
>
</
footer
>
); }
export
default
Footer
;