1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-20 14:37:43 +01:00

class -> className

This commit is contained in:
James Hawkins 2021-08-04 13:54:34 +01:00
parent 6714358bb2
commit 302985dd0e
2 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@ import './ErrorBanner.css';
export function ErrorBanner({children}) { export function ErrorBanner({children}) {
return ( return (
<div class="errorBanner"> <div className="errorBanner">
{children} {children}
</div> </div>
) )

View file

@ -6,8 +6,8 @@ export function PercentageOverlay({ percentage }) {
if(percentage && percentage > 3) percentage = Math.max(20, percentage < 90 ? percentage : 100) if(percentage && percentage > 3) percentage = Math.max(20, percentage < 90 ? percentage : 100)
return percentage > 0 ? ( return percentage > 0 ? (
<div class="progressBar"> <div className="progressBar">
<div class="progressBarInner" style={{width: `${percentage}%`}}></div> <div className="progressBarInner" style={{width: `${percentage}%`}}></div>
</div> </div>
) : <React.Fragment></React.Fragment> ) : <React.Fragment></React.Fragment>
} }