import * as React from "react"; import { ButtonLineComponent } from '../../../lines/buttonLineComponent'; interface IGraphActionsBarProps { addKeyframe: () => void; handleValueChange: (e: React.ChangeEvent) => void; flatTangent: () => void; currentValue: number; } export class GraphActionsBar extends React.Component{ constructor(props: IGraphActionsBarProps) { super(props); } render() { return (
) } }