import React from 'react'; import { observer } from 'mobx-react'; import { Flex } from 'reflexbox'; import Layout, { Title } from 'components/Layout'; import CenteredContent from 'components/CenteredContent'; import SlackAuthLink from 'components/SlackAuthLink'; import styles from './Settings.scss'; import SettingsStore from './SettingsStore'; @observer class Settings extends React.Component { static store; constructor(props) { super(props); this.store = new SettingsStore(); } render() { const title = ( Settings ); return (

Slack

Connect Atlas to your Slack to instantly search for your documents using /atlas command.

Add to Slack
); } } export default Settings;