mirror of
https://github.com/umami-software/umami.git
synced 2026-02-07 22:27:16 +01:00
Refactor: removed default exports.
This commit is contained in:
parent
cd944e14ce
commit
f83a12d6cd
343 changed files with 555 additions and 1046 deletions
|
|
@ -1,6 +1,6 @@
|
|||
'use client';
|
||||
import TestConsole from './TestConsole';
|
||||
import { TestConsole } from './TestConsole';
|
||||
|
||||
export default function ConsolePage({ websiteId }) {
|
||||
export function ConsolePage({ websiteId }) {
|
||||
return <TestConsole websiteId={websiteId} />;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
import { Button } from 'react-basics';
|
||||
import Link from 'next/link';
|
||||
import Script from 'next/script';
|
||||
import WebsiteSelect from '@/components/input/WebsiteSelect';
|
||||
import Page from '@/components/layout/Page';
|
||||
import PageHeader from '@/components/layout/PageHeader';
|
||||
import EventsChart from '@/components/metrics/EventsChart';
|
||||
import WebsiteChart from '../websites/[websiteId]/WebsiteChart';
|
||||
import { WebsiteSelect } from '@/components/input/WebsiteSelect';
|
||||
import { Page } from '@/components/layout/Page';
|
||||
import { PageHeader } from '@/components/layout/PageHeader';
|
||||
import { EventsChart } from '@/components/metrics/EventsChart';
|
||||
import { WebsiteChart } from '../websites/[websiteId]/WebsiteChart';
|
||||
import { useApi, useNavigation } from '@/components/hooks';
|
||||
import styles from './TestConsole.module.css';
|
||||
|
||||
|
|
@ -216,5 +216,3 @@ export function TestConsole({ websiteId }: { websiteId: string }) {
|
|||
</Page>
|
||||
);
|
||||
}
|
||||
|
||||
export default TestConsole;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue