mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-22 16:18:10 +00:00
18 lines
606 B
JavaScript
18 lines
606 B
JavaScript
![]() |
import React, { useState, useMemo } from "react";
|
||
|
import styles from "./styles.module.scss";
|
||
|
import { LikeOutlined, DislikeOutlined, CheckCircleOutlined } from "@ant-design/icons";
|
||
|
import { v4 as uuidv4 } from "uuid";
|
||
|
|
||
|
const SlackUtm = ({ pageId }) => {
|
||
|
return (
|
||
|
<div className={styles.slackUtm}>
|
||
|
<div className={styles.slackUtm}>
|
||
|
<hr />
|
||
|
Need more help? Join the conversation in <a href={`https://datahubproject.io/slack?utm_source=docs&utm_medium=footer&utm_campaign=docs_footer&utm_content=${pageId}`}>Slack!</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default SlackUtm;
|