characterization.js 916 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import Characterization from '../components/Characterization'
  2. const MOCK_DATA = {
  3. name: "DCDC Efficiency",
  4. projectVersion: {
  5. id: "ashvkjhskrjhskfsvsfs",
  6. name: "Production Tapeout",
  7. changes: ['DCDC removed', 'Logo changed'],
  8. date: Date.now(),
  9. project: {
  10. }
  11. },
  12. measurementRuns: [{
  13. id: "asdsdghwkerhkvbsdf",
  14. name: "Temperature sweep with L=5nH",
  15. operators: [{
  16. name: "Tomi"
  17. }],
  18. location: "Thalwil",
  19. temperature: 24.5,
  20. startTime: Date.now(),
  21. endTime: Date.now(),
  22. log: [],
  23. comments: [],
  24. measurements: [],
  25. setup: {
  26. id: "jnerktnkfjgnksdf",
  27. name: "DCDC Setup",
  28. description: "JU characterization board",
  29. images: [],
  30. comments: [],
  31. setupHardware: [],
  32. instruments: []
  33. }
  34. }]
  35. }
  36. const CharacterizationPage = props => (
  37. <Characterization data={MOCK_DATA} />
  38. )
  39. export default CharacterizationPage