refactor: update import paths
This commit is contained in:
parent
05649e3c11
commit
70a819f525
4 changed files with 8 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
||||||
import { ThemePicker } from '@/components/user/theme-picker';
|
import { ThemePicker } from '@/components/misc/theme-picker';
|
||||||
import { Card, CardContent, CardHeader } from '@/components/ui/card';
|
import { Card, CardContent, CardHeader } from '@/components/ui/card';
|
||||||
import EventForm from '@/components/user/event-form';
|
import EventForm from '@/components/forms/event-form';
|
||||||
|
|
||||||
export default function NewEvent() {
|
export default function NewEvent() {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
'use client';
|
'use client';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import LabeledInput from '@/components/labeled-input';
|
import LabeledInput from '@/components/custom-ui/labeled-input';
|
||||||
import { Button } from '@/components/custom-ui/button';
|
import { Button } from '@/components/ui/button';
|
||||||
import Logo from '@/components/logo';
|
import Logo from '@/components/misc/logo';
|
||||||
import TimePicker from '@/components/time-picker';
|
import TimePicker from '@/components/time-picker';
|
||||||
import { Label } from '@/components/ui/label';
|
import { Label } from '@/components/ui/label';
|
||||||
import { useGetApiUserMe } from '@/generated/api/user/user';
|
import { useGetApiUserMe } from '@/generated/api/user/user';
|
|
@ -3,8 +3,8 @@
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import { ChevronDownIcon } from 'lucide-react';
|
import { ChevronDownIcon } from 'lucide-react';
|
||||||
|
|
||||||
import { Button } from '@/components/custom-ui/button';
|
import { Button } from '@/components/ui/button';
|
||||||
import { Calendar } from '@/components/custom-ui/calendar';
|
import { Calendar } from '@/components/ui/calendar';
|
||||||
import { Input } from '@/components/ui/input';
|
import { Input } from '@/components/ui/input';
|
||||||
import { Label } from '@/components/ui/label';
|
import { Label } from '@/components/ui/label';
|
||||||
import {
|
import {
|
||||||
|
|
|
@ -9,7 +9,7 @@ import {
|
||||||
import { DayButton, DayPicker, getDefaultClassNames } from 'react-day-picker';
|
import { DayButton, DayPicker, getDefaultClassNames } from 'react-day-picker';
|
||||||
|
|
||||||
import { cn } from '@/lib/utils';
|
import { cn } from '@/lib/utils';
|
||||||
import { Button, buttonVariants } from '@/components/custom-ui/button';
|
import { Button, buttonVariants } from '@/components/ui/button';
|
||||||
|
|
||||||
function Calendar({
|
function Calendar({
|
||||||
className,
|
className,
|
Loading…
Add table
Add a link
Reference in a new issue