// Libraries import React, { PureComponent } from 'react'; // Components import QueryRow from './QueryRow'; // Types import { ExploreId } from 'app/types/explore'; interface QueryRowsProps { className?: string; exploreId: ExploreId; queryKeys: string[]; } export default class QueryRows extends PureComponent { render() { const { className = '', exploreId, queryKeys } = this.props; return (
{queryKeys.map((key, index) => { return ; })}
); } }