/** * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ import * as React from 'react'; import { PluginCommands } from 'mol-plugin/command'; import { UpdateTrajectory } from 'mol-plugin/state/actions/basic'; import { PluginComponent } from './base'; export class Controls extends PluginComponent<{ }, { }> { render() { return <> ; } } export class TrajectoryControls extends PluginComponent { render() { return
Trajectory:
} }