Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created October 3, 2022 13:45
Embed
What would you like to do?
Creating an Svg
import React from 'react';
import PropTypes from 'prop-types';
const LineChart = ({ data }) => {
...
- return null
+ return (
+ <svg viewBox={`0 0 ${chartWidth} ${chartHeight}`} role="presentation">
+
+ </svg>
+ );
};
export default LineChart;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment