refactor(web): remove typescript
This commit is contained in:
15
packages/web/src/components/SnackbarProvider/index.jsx
Normal file
15
packages/web/src/components/SnackbarProvider/index.jsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import * as React from 'react';
|
||||
import { SnackbarProvider as BaseSnackbarProvider } from 'notistack';
|
||||
const SnackbarProvider = (props) => {
|
||||
return (
|
||||
<BaseSnackbarProvider
|
||||
{...props}
|
||||
anchorOrigin={{
|
||||
vertical: 'bottom',
|
||||
horizontal: 'right',
|
||||
}}
|
||||
dense
|
||||
/>
|
||||
);
|
||||
};
|
||||
export default SnackbarProvider;
|
Reference in New Issue
Block a user