import React from "react"; import { action } from "mobx"; import { observer } from "mobx-react"; import { BB3Instrument } from "instrument/bb3/objects/BB3Instrument"; export const ScriptsSectionSelectView = observer( ({ bb3Instrument }: { bb3Instrument: BB3Instrument }) => { if (bb3Instrument.allScriptsCollection.length == 0) { return null; } return ( ); } );