feat: paste to upload image
This commit is contained in:
parent
b883c1b948
commit
0d9c0a3b08
|
|
@ -85,6 +85,12 @@ export const useEditor = ({
|
|||
const file = e.dataTransfer?.items[0]?.getAsFile()
|
||||
if (!file) return
|
||||
|
||||
onDropFile?.(file, view)
|
||||
},
|
||||
paste(e) {
|
||||
const file = e.clipboardData?.files[0]
|
||||
if (!file) return
|
||||
|
||||
onDropFile?.(file, view)
|
||||
},
|
||||
}),
|
||||
|
|
|
|||
|
|
@ -182,7 +182,7 @@ export default function Home({ region }: { region: string | null }) {
|
|||
We believe freedom of expression is a universal right. In your
|
||||
long-form writing, you should be able to express your thoughts
|
||||
freely; without fear of your post being removed or censored.
|
||||
Xlog ensures that whatever you write, it will be immutable and
|
||||
xLog ensures that whatever you write, it will be immutable and
|
||||
permanently stored.
|
||||
</div>
|
||||
<div className="my-10 text-zinc-500">
|
||||
|
|
|
|||
Loading…
Reference in New Issue