10 lines
296 B
Plaintext
10 lines
296 B
Plaintext
|
|
<FormControlLabel
|
||
|
|
control={<Switch onChange={handleChange} />}
|
||
|
|
label="Toggle RTL"
|
||
|
|
/>
|
||
|
|
<CacheProvider value={rtl ? rtlCache : ltrCache}>
|
||
|
|
<Box sx={{ flexGrow: 1, mx: 2 }} dir={rtl ? 'rtl' : ''}>
|
||
|
|
<Normal>RTL normal behavior</Normal>
|
||
|
|
<Noflip>RTL noflip</Noflip>
|
||
|
|
</Box>
|
||
|
|
</CacheProvider>
|