#DateInput not rendering correctly on type "range"
5 messages · Page 1 of 1 (latest)
Here i'm using storybook, but in nextjs it have the same behavior
My _app.tsx
// ...
const mantineCache = createEmotionCache({ key: 'mantine' });
return (
<QueryClientProvider client={queryClient}>
<MantineProvider
emotionCache={mantineCache}
withGlobalStyles
withNormalizeCSS
withCSSVariables
theme={theme}
>
<ModalsProvider>
<Notifications />
<Global styles={globalStyles} />
{StoryFn()}
</ModalsProvider>
</MantineProvider>
</QueryClientProvider>
);
How i'm rendering DateInput
<DateInput
label="Date input"
maw={400}
mx="auto"
placeholder="Date input"
type="range"
value={new Date()}
/>
DateInput component does not support type="range"