InfluxCheatSheet.tsx 637 B

1234567891011121314151617181920212223
  1. import React from 'react';
  2. const CHEAT_SHEET_ITEMS = [
  3. {
  4. title: 'Getting started',
  5. label:
  6. 'Start by selecting a measurement and field from the dropdown above. You can then use the tag selector to further narrow your search.',
  7. },
  8. ];
  9. const InfluxCheatSheet = (props: any) => (
  10. <div>
  11. <h2>InfluxDB Cheat Sheet</h2>
  12. {CHEAT_SHEET_ITEMS.map((item) => (
  13. <div className="cheat-sheet-item" key={item.title}>
  14. <div className="cheat-sheet-item__title">{item.title}</div>
  15. <div className="cheat-sheet-item__label">{item.label}</div>
  16. </div>
  17. ))}
  18. </div>
  19. );
  20. export default InfluxCheatSheet;