Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created October 3, 2022 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PaulieScanlon/5368b36bfc4ee4814f0ee246d74747e0 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/5368b36bfc4ee4814f0ee246d74747e0 to your computer and use it in GitHub Desktop.
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