You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ui/src/views/datasheets/index.jsx

21 lines
376 B
React

3 years ago
"use strict";
const React = require("react");
2 years ago
const Layout = require("../_layout");
2 years ago
module.exports = function Index({ datasheetCount }) {
3 years ago
return (
2 years ago
<Layout>
<div className="wrapper">
<div className="counter">
Searching {datasheetCount} datasheets!
3 years ago
</div>
2 years ago
<div id="datasheetSearch">
Loading, please wait...
3 years ago
</div>
2 years ago
</div>
</Layout>
3 years ago
);
};