mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
18 lines
414 B
JavaScript
18 lines
414 B
JavaScript
import React from "react"
|
|
import { faSpinner } from "@fortawesome/free-solid-svg-icons"
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
|
|
|
|
|
|
/**
|
|
* A div with a static dots icon and a "Starting..." text.
|
|
*
|
|
* @returns {JSX.Element}
|
|
* @constructor
|
|
*/
|
|
export default function Starting() {
|
|
return (
|
|
<div>
|
|
<FontAwesomeIcon icon={faSpinner}/> Starting...
|
|
</div>
|
|
)
|
|
}
|