feat(web): introduce API tokens in admin dashboard

This commit is contained in:
Ali BARIN
2025-04-15 16:01:34 +00:00
parent 2c1888e1b3
commit 15e8f1d5a8
20 changed files with 500 additions and 10 deletions

View File

@@ -0,0 +1,5 @@
import copy from 'clipboard-copy';
export default function copyInputValue(value) {
copy(value);
}