aboutsummaryrefslogtreecommitdiff
path: root/static/api/index.js
blob: 50b9b2623ce7cab67d82a20aa33f6acd67075074 (plain)
1
2
3
4
5
6
7
8
9
10
11
import * as sfw from 'sfw';
const { Input } = sfw.element.native;

export async function upload_images() {
	const input = Input.new({
		type: 'file',
		multiple: true,
		accept: 'image/jpeg',
	})
	input.click();
}