feat: Introduce InputCreator
This commit is contained in:
4
packages/web/src/helpers/copyInputValue.ts
Normal file
4
packages/web/src/helpers/copyInputValue.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
import copy from 'clipboard-copy';
|
||||
export default function copyInputValue(element: HTMLInputElement) {
|
||||
copy(element.value);
|
||||
};
|
Reference in New Issue
Block a user