Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
177 Bytes
export default () => {
return (
<a
href=""
onClick={(e) => {
window.history.back()
e.preventDefault()
}}
>
Back
</a>
)
}