import React from "react"; import "../Layout.css"; const CSVCard = (props: { handleChange: (e: React.ChangeEvent) => void }) => { return (

Select CSV data

Please upload a CSV file, where the first row is the header.
); } export default CSVCard;