do not shrink SessionSpinner
parent
5109f9fdda
commit
e9f186065d
@ -1,32 +1,22 @@
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
type Props = {
|
||||
loading: boolean;
|
||||
}
|
||||
};
|
||||
|
||||
export class SessionSpinner extends React.Component<Props> {
|
||||
public static defaultProps = {
|
||||
loading: true,
|
||||
};
|
||||
export const SessionSpinner = (props: Props) => {
|
||||
const { loading } = props;
|
||||
|
||||
constructor(props: any) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
public render() {
|
||||
const { loading } = this.props;
|
||||
|
||||
return (
|
||||
<>
|
||||
{loading ? (
|
||||
<div className="session-loader">
|
||||
<div />
|
||||
<div />
|
||||
<div />
|
||||
<div />
|
||||
</div>
|
||||
) : null}
|
||||
</>
|
||||
);
|
||||
}
|
||||
}
|
||||
return (
|
||||
<>
|
||||
{loading ? (
|
||||
<div className="session-loader">
|
||||
<div />
|
||||
<div />
|
||||
<div />
|
||||
<div />
|
||||
</div>
|
||||
) : null}
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
Loading…
Reference in New Issue