Add copyright notice
All checks were successful
Playwright Tests / test (pull_request) Has been skipped
Check usage of free licenses / build-static-assets (pull_request) Successful in 43s
Add copyright notice / copyright_notice (pull_request) Successful in 47s

This commit is contained in:
Manuel Bustillo 2024-12-28 18:53:59 +00:00
parent c49acf8ab6
commit dc735f1a2c
2 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,5 @@
/* Copyright (C) 2024 Manuel Bustillo*/
export class Affinities {
[key:string]: number;
}

View File

@ -1,3 +1,5 @@
/* Copyright (C) 2024 Manuel Bustillo*/
import { Slider } from 'primereact/slider';
export default function AffinitySlider({ value, onChange }: { value: number, onChange: (value: number) => void }) {