import React from 'react'; import { useProjectStore } from '../stores/projectStore'; const TrackControl: React.FC = () => { const { addTrack } = useProjectStore(); const handleAddTrack = () => { addTrack(); }; return (
); }; export default TrackControl;