//Imports
import React, { useState } from 'react';
import ReactDOM from 'react-dom';
import { select, range } from 'd3';
import { Dropdown } from './Dropdown';
//Select svg html element
const svg = d3.select('svg');
//Spacing Constants
const width = 960;
const height = 500;
const dotGridMargin = 30;
const dotGridWidth = (width / 2) - (dotGridMargin * 2);
const dotGridHeight = height - dotGridMargin * 2;
//Order of colors in which they appear
const colors = [
'#f04343
', '#de8cd6
', '#8c61c9
', '#2b64d3
', '#2ad1d4
', '#72cf8a
', '#d2d949
', '#f5eb2c
', '#ffb836
', '#a36736
' ];
const options = [
{ value: '0', label: 'Step 0' },
{ value: '1', label: 'Step 1'},
{ value: '2', label: 'Step 2'},
];