diff --git a/frontend/src/components/Spinner.jsx b/frontend/src/components/Spinner.jsx index b828e35..e02a8af 100644 --- a/frontend/src/components/Spinner.jsx +++ b/frontend/src/components/Spinner.jsx @@ -1,6 +1,12 @@ import React from 'react'; -const Spinner = () => { +const Spinner = ({ inline = false }) => { + if (inline) { + return ( +
+ ); + } + return (