15 lines
336 B
JavaScript
15 lines
336 B
JavaScript
|
|
|
||
|
|
import bg from "~/assets/images/public/white/bg.png";
|
||
|
|
import "./index.less";
|
||
|
|
import Header from "~/pages/Container/Share/components/Header";
|
||
|
|
|
||
|
|
function WhiteShareOffice() {
|
||
|
|
return (
|
||
|
|
<div className="white_share_office" style={{ backgroundImage: `url(${bg})` }}>
|
||
|
|
<Header />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default WhiteShareOffice;
|