import React from 'react'; import { Box, Stack, TextInput } from '@mantine/core'; const ProfileSettings = ({ settings, onInputChange }) => ( onInputChange('displayName', e.currentTarget.value)} placeholder="Enter display name" /> onInputChange('email', e.currentTarget.value)} placeholder="Enter email" /> ); export default ProfileSettings;