mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
16 lines
331 B
JavaScript
16 lines
331 B
JavaScript
import React from 'react';
|
|
|
|
import { SMSIntegrationProvider } from './SMSIntegrationProvider';
|
|
import SMSIntegrationTabs from './SMSIntegrationTabs';
|
|
|
|
/**
|
|
* SMS SMS Integration
|
|
*/
|
|
export default function SMSIntegration() {
|
|
return (
|
|
<SMSIntegrationProvider>
|
|
<SMSIntegrationTabs />
|
|
</SMSIntegrationProvider>
|
|
);
|
|
}
|