openreplay/frontend/app/components/Client/Integrations/SlackForm.js
Shekar Siri 2ed5cac986
Webpack upgrade and dependency cleanup (#523)
* change(ui) - webpack update
* change(ui) - api optimize and other fixes
2022-06-03 16:47:38 +02:00

15 lines
No EOL
294 B
JavaScript

import React from 'react';
import SlackChannelList from './SlackChannelList/SlackChannelList';
const SlackForm = (props) => {
const { onEdit } = props;
return (
<>
<SlackChannelList onEdit={onEdit} />
</>
)
}
SlackForm.displayName = "SlackForm";
export default SlackForm;