mirror of
https://github.com/cloudy9101/obsidian-image-inserter.git
synced 2026-07-22 06:50:25 +00:00
10 lines
189 B
TypeScript
10 lines
189 B
TypeScript
import * as React from "react";
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className="loading-container">
|
|
<div className="lds-heart"><div></div></div>
|
|
</div>
|
|
)
|
|
}
|
|
|