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.

30 lines
439 B
JavaScript

"use strict";
const React = require("react");
const gql = require("../../../packages/graphql-interface/tag");
const Layout = require("../layout");
module.exports = {
query: gql`
query {
resources {
storagePools {
id
type
name
path
isLocal
}
}
}
`,
template: function StorageDeviceList({data}) {
return (
<Layout title="Storage Pools">
Storage pools go here
</Layout>
);
}
};