drop 1.5.0 message

This commit is contained in:
Karol Wypchlo 2020-07-28 14:03:08 +02:00
parent 559c710fd8
commit dd0f40b945
1 changed files with 11 additions and 10 deletions

View File

@ -1,13 +1,14 @@
import React from "react";
import "./StickyTopMessage.scss";
// import React from "react";
// import "./StickyTopMessage.scss";
export default function StickyTopMessage() {
return (
<div className="sticky-top-message" role="alert">
<p>
We are working on improved performance as part of the upcoming Sia v1.5.0 release. In the meantime, you can try
other webportals listed at the <a href="#footer">bottom</a>.
</p>
</div>
);
return null; // returns nothing, uncomment when we need a new message
// return (
// <div className="sticky-top-message" role="alert">
// <p>
// We are working on improved performance as part of the upcoming Sia v1.5.0 release. In the meantime, you can try
// other webportals listed at the <a href="#footer">bottom</a>.
// </p>
// </div>
// );
}