diff --git a/src/components/App.tsx b/src/components/App.tsx index df875a8..8cf0d9a 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -32,6 +32,7 @@ function getDefaultState() { progress: undefined, disableAutoClose: false, limit: 0, + stacked: false, }; } @@ -142,6 +143,15 @@ export function App() { onChange={handleInput} /> +
+

Stacked

+ +

Type

= ({ limit, theme = "light", transition, + stacked = false, }) => { return(
@@ -50,6 +51,10 @@ export const ContainerCode: React.FC = ({ position {`="${position}"`}
+
+ stacked + {`="${stacked}"`} +
autoClose {`={${disableAutoClose ? false : autoClose}}`}