An example of creating an axis using D3
const xAxis = d3.select(‘svg’) .append(‘g’) .attr(‘class’, ‘axis--x’) .call(d3.axisBottom(xScale));