Signal drop!
Relay (operand.online) is unreachable.
Usually, a dropped signal means an upgrade is happening. Hold on!
Sorry, no connección.
Hang in there while we get back on track
gram: legal
> ./assets/react-components/measure/sequence.jsx
import { Measure } from './index'
import { Examine } from '../examine'
import { themes } from "../colorscheme"
export function Sequence({src}) {
return src.map((s, i) => {
let theme = themes[i % themes.length]
return <Measure src={s} theme={theme} />
})
}