import React from 'react'; import LoadIn from "../../components/animation/LoadIn"; import {Col, Row} from "react-bootstrap"; import QueryOptionsCard from "../../components/cards/query/QueryOptionsCard"; import QueryPath from "../../components/alert/QueryPath"; import {useAuth} from "../../hooks/authenticationHook"; const NewQueryView = () => { const {hasPermission} = useAuth(); return ( {hasPermission('access.query') &&
}
) }; export default NewQueryView