iboard/components/Footer.js
2026-04-03 22:00:00 +08:00

12 lines
262 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const Footer = () => {
return (
<footer className="footer">
<div className="footer-content">
<p>© 2026 iBoard. 收集和整理经济数据以经济理论的形式重新组织</p>
</div>
</footer>
)
}
export default Footer