mirror of
https://github.com/BreizhHardware/Jellystat.git
synced 2026-01-18 16:27:20 +01:00
changed all extensions from js to jsx added proxies in vite config set up chunk for smaller distribution size remove setupProxy remove reportWebVitals
12 lines
239 B
JavaScript
12 lines
239 B
JavaScript
import React from "react";
|
|
import "../../css/loading.css";
|
|
|
|
function ComponentLoading() {
|
|
return (
|
|
<div className="component-loading">
|
|
<div className="loading__spinner"></div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default ComponentLoading; |