mirror of
https://github.com/umami-software/umami.git
synced 2026-02-21 13:05:36 +01:00
Funnel form.
This commit is contained in:
parent
dd2db308ee
commit
1130bca195
19 changed files with 460 additions and 45 deletions
26
components/pages/reports/FunnelPage.js
Normal file
26
components/pages/reports/FunnelPage.js
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
import Page from 'components/layout/Page';
|
||||
import FunnelChart from './FunnelChart';
|
||||
import FunnelForm from './FunnelForm';
|
||||
|
||||
export default function FunnelPage() {
|
||||
function handleOnSearch() {
|
||||
// do API CALL to api/reports/funnel to get funnelData
|
||||
// Get DATA
|
||||
}
|
||||
|
||||
return (
|
||||
<Page>
|
||||
funnelPage
|
||||
{/* <ReportForm /> */}
|
||||
<FunnelForm onSearchClick={handleOnSearch} /> website / start/endDate urls: []
|
||||
<FunnelChart />
|
||||
{/* {!chartLoaded && <Loading icon="dots" style={{ minHeight: 300 }} />}
|
||||
{chartLoaded && (
|
||||
<>
|
||||
{!view && <WebsiteTableView websiteId={websiteId} />}
|
||||
{view && <WebsiteMenuView websiteId={websiteId} />}
|
||||
</>
|
||||
)} */}
|
||||
</Page>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue