popup
2 years ago
Container.tsx
2 years ago
FeedbackButton.tsx
2 years ago
FeedbackIcon.tsx
2 years ago
index.tsx
2 years ago
Container.tsx
19 lines
| 1 | const Container = ({children}) => { |
| 2 | return ( |
| 3 | <div style={{ |
| 4 | zIndex: 99999999, |
| 5 | position: 'fixed', |
| 6 | bottom: '40px', |
| 7 | right: '20px', |
| 8 | display: 'flex', |
| 9 | flexDirection: 'column', |
| 10 | alignItems: 'flex-end', |
| 11 | gap: '10px', |
| 12 | }}> |
| 13 | {children} |
| 14 | </div> |
| 15 | ) |
| 16 | } |
| 17 | |
| 18 | export default Container; |
| 19 |