Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/components/LBDashboard/LBDashboard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
Card,
} from 'reactstrap';
import ReviewWordCloud from './ReviewWordCloud/ReviewWordCloud';
import RatingDistribution from './RatingDistribution/RatingDistribution';
import styles from './LBDashboard.module.css';
import DemandOverTime from './LbAnalytics/DemandOverTime/DemandOverTime';
import moment from 'moment';
Expand Down Expand Up @@ -343,7 +344,14 @@ export function LBDashboard() {
</AnalysisSection>

<AnalysisSection title="Insights from Reviews" darkMode={darkMode}>
<ReviewWordCloud darkMode={darkMode} />
<div className={styles.chartRow}>
<div className={styles.chartCol}>
<RatingDistribution darkMode={darkMode} />
</div>
<div className={styles.chartCol}>
<ReviewWordCloud darkMode={darkMode} />
</div>
</div>
</AnalysisSection>
</Container>
);
Expand Down
Loading
Loading