You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
515 B

import React from "react";
export default class PageCommunity extends React.Component {
TitleView() {
try {
if (document.getElementById("pTitle").textContent !== "Сообщества") {
document.getElementById("pTitle").textContent = "Сообщества";
}
} catch (e) {
console.log(e);
}
}
render() {
return (
<div style={{ padding: "20px" }}>
{this.TitleView()}
<div>Calculte Linux</div>
</div>
);
}
}