The error I'm getting:
ERROR in ./src/components/Loading.jsx 9:33-39
export 'default' (imported as 'Loader') was not found in 'react-loader-spinner' (possible exports: Audio, BallTriangle, Bars, Circles, CradleLoader, Grid, Hearts, MutatingDots, Oval, Plane, Puff, RevolvingDot, Rings, TailSpin, ThreeDots, Triangle, Watch)
Here is my code:
import Loader from 'react-loader-spinner';
export const Loading = () => (
<div className="flex justify-center items-center ">
<Loader type="Puff" color="#00BFFF" height={550} width={80} />
</div>
);```
CodePudding user response:
react-loader-spinner exports various loaders and you can use those loaders directly. And if you want to import all the loaders and use them. You can do it like this.
import * as Loader from "react-loader-spinner";
function App() {
return <Loader.TailSpin />;
}
or
import {TailSpin} from "react-loader-spinner";
function App() {
return <TailSpin />;
}
https://codesandbox.io/s/hopeful-herschel-652kq?file=/src/index.js:70-168
CodePudding user response:
You just need to import that specific loader that you want. For example the code below is for Rings loader :
import {Rings} from 'react-loader-spinner';
export const Loading = () => (
<div className="flex justify-center items-center ">
<Rings color="#00BFFF" height={80} width={80} />
</div>
);
All pinner types are here on the official documentation.
