7 lines
268 B
Plaintext
7 lines
268 B
Plaintext
|
|
<Switch onChange={handleChange} endDecorator="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>
|