Hide other reports.

This commit is contained in:
Mike Cao 2023-07-10 09:54:51 -07:00
parent cabff7924e
commit 97c57696ff
6 changed files with 205 additions and 92 deletions

View file

@ -9,24 +9,12 @@ import styles from './ReportTemplates.module.css';
import { useMessages } from 'hooks';
const reports = [
{
title: 'Event data',
description: 'Query your custom event data.',
url: '/reports/event-data',
icon: <Nodes />,
},
{
title: 'Funnel',
description: 'Understand the conversion and drop-off rate of users.',
url: '/reports/funnel',
icon: <Funnel />,
},
{
title: 'Insights',
description: 'Explore your data by applying segments and filters.',
url: '/reports/insights',
icon: <Lightbulb />,
},
];
function ReportItem({ title, description, url, icon }) {

View file

@ -2,6 +2,7 @@
display: grid;
grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
gap: 20px;
width: 360px;
}
.report {