first commit
Some checks failed
Deploy to Private Server / deploy (push) Failing after 2s

This commit is contained in:
2025-12-24 11:49:29 +07:00
commit 97e902ec50
19 changed files with 4897 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { Select } from 'antd';
export default function CalculatorMode({ value, onChange }) {
return (
<div className="form-row">
<label htmlFor="calculator-mode" className="form-label">
Calculate
</label>
<Select
id="calculator-mode"
value={value}
onChange={onChange}
size="large"
style={{ width: '100%' }}
options={[
{ value: 'shooting-interval', label: 'Shooting interval' },
{ value: 'clip-length', label: 'Clip length' },
{ value: 'event-duration', label: 'Event duration' },
]}
/>
</div>
);
}