How do I align one button to the left while the other two on the center?
Pls check codesandbox here CLICK HERE
<DialogActions sx={{ justifyContent: "center" }}>
<Button>Left</Button>
<Button onClick={handleClose}>Cancel center</Button>
<Button onClick={handleClose}>Subscribe center</Button>
</DialogActions>