fix: 解决css污染bug

This commit is contained in:
landaiqing
2024-04-17 17:16:32 +08:00
parent 2656b6a6f7
commit 5889fe1b2f
12 changed files with 74 additions and 57 deletions

View File

@@ -1,11 +1,10 @@
import React from 'react';
import React from 'react'
const FooterComponent: React.FC = () => {
return (
<div style={{ textAlign: 'center', color: 'black' }}>
schisandra ©{new Date().getFullYear()} Created by schisandra
</div>
)
}
return (
<div style={{textAlign: 'center',color: 'black'}}>
schisandra ©{new Date().getFullYear()} Created by schisandra
</div>
);
};
export default FooterComponent;
export default FooterComponent