# give/4.17.0/src/EventTickets/resources/admin/feedback/Container.tsx

GiveWP – Donation Plugin and Fundraising Platform, version 4.17.0. 19 lines.

- Page: https://pluginprobe.com/plugins/give/4.17.0/code/src/EventTickets/resources/admin/feedback/Container.tsx
- Raw: https://pluginprobe.com/plugins/give/4.17.0/raw/src/EventTickets/resources/admin/feedback/Container.tsx
- Modified: 2024-03-13T21:54:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.17.0/code/src/EventTickets/resources/admin/feedback/Container.tsx#L10-L20`.

```tsx
const Container = ({children}) => {
    return (
        <div style={{
            zIndex: 99999999,
            position: 'fixed',
            bottom: '40px',
            right: '20px',
            display: 'flex',
            flexDirection: 'column',
            alignItems: 'flex-end',
            gap: '10px',
        }}>
            {children}
        </div>
    )
}

export default Container;

```
