Skip to content

Commit

Permalink
feat(widgets): initial implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
akoushke committed Feb 21, 2020
1 parent f58ca53 commit 0793a0f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 1 addition & 4 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
// Testing bundle works with webex and component libraries
import webex from 'webex';
import WebexSDKAdapter from '@webex/sdk-component-adapter';
import {WebexDataProvider, WebexMeeting} from '@webex/components';
export {default as WebexMeetingWidget} from './widgets/WebexMeetingWidget';
8 changes: 8 additions & 0 deletions src/widgets/WebexMeetingWidget.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from 'react';
import webex from 'webex';
import {WebexMeeting, WebexDataProvider} from '@webex/components';
import WebexSDKAdapter from '@webex/sdk-component-adapter';

export default function WebexMeetingWidget() {
return <h1>Webex Meeting Widget!</h1>;
}

0 comments on commit 0793a0f

Please sign in to comment.