InfluxCheatSheet.tsx 591 B

123456789101112131415161718192021
  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. export default (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. );