initial concept

This commit is contained in:
Boof2015
2026-03-21 01:08:26 -04:00
parent 6af9d0f8f8
commit ecf13c2857
47 changed files with 15009 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import ScopeModule from './ScopeModule'
export default function Strip(): JSX.Element {
return (
<div
style={{
display: 'flex',
flexDirection: 'row',
width: '100%',
height: '100%',
backgroundColor: 'var(--bg-primary)',
}}
>
<ScopeModule scopeKind="spectrum" lineColor="var(--accent, #38bdf8)" />
<div style={{ width: '1px', flexShrink: 0, backgroundColor: 'var(--glass-border)' }} />
<ScopeModule scopeKind="oscilloscope" lineColor="var(--accent, #38bdf8)" />
<div style={{ width: '1px', flexShrink: 0, backgroundColor: 'var(--glass-border)' }} />
<ScopeModule scopeKind="vectorscope" lineColor="var(--accent, #38bdf8)" />
</div>
)
}