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.

43 lines
1.1 KiB

import React from "react";
2 years ago
class InfoPage extends React.Component {
TitleView() {
try {
if (document.getElementById("pTitle").textContent !== "О проекте") {
document.getElementById("pTitle").textContent = "О проекте";
}
} catch (e) {
console.log(e);
}
}
render() {
2 years ago
this.TitleView();
return (
2 years ago
<div className="infoPage" style={{ padding: "10px" }}>
<h1>Что это?</h1>
2 years ago
<div
style={{
border: "1px dotted #CCC",
padding: "10px"
}}
>
Это демонстрационая версия GUI для <b>portage</b>
</div>
<h1>Основная цель</h1>
2 years ago
<div
style={{
border: "1px dotted #CCC",
padding: "10px"
}}
>
Снизить порог вхождени для пользовтелей дистрибутивов в основе которых
лежит пакетный менеджер <b>portage</b>
</div>
</div>
);
}
}
2 years ago
export default InfoPage;