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