27 lines
909 B
TypeScript
27 lines
909 B
TypeScript
import React, {useState} from "react";
|
|
import intl from "react-intl-universal";
|
|
import '../../lanhuapp/common.css';
|
|
import "../../lanhuapp/index.css";
|
|
import {useAppSelector} from "../../store/hooks";
|
|
import {selectChangeLangAndCss} from "../../store/ChangeLangAndCss";
|
|
import ChangeLangButton from "../Component/ChangeLangButton";
|
|
import ChangeFullButton from "../Component/ChangeFullButton";
|
|
|
|
function TopE() {
|
|
const Css = useAppSelector(selectChangeLangAndCss);
|
|
return (
|
|
<div className="flex-row">
|
|
<div className="block_28 flex-row">
|
|
<div className="image-wrapper_3 flex-col justify-between">
|
|
<div className="label_1"/>
|
|
{/*<div className="image_1"/>*/}
|
|
</div>
|
|
<span className={Css.text_1}>{intl.get('TITLE_Q')}</span>
|
|
</div>
|
|
<ChangeLangButton/>
|
|
<ChangeFullButton/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default TopE; |