Skip to content

Commit

Permalink
feat(demo): initial implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
akoushke committed Feb 21, 2020
1 parent 28bc898 commit f58ca53
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
4 changes: 4 additions & 0 deletions demo/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#widgets {
width: 100%;
height: 100%;
}
11 changes: 11 additions & 0 deletions demo/App.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react';
import ReactDOM from 'react-dom';
import {WebexMeetingWidget} from '../src';

import './App.css';

export default function App() {
return <WebexMeetingWidget />;
}

ReactDOM.render(<App />, document.getElementById('widgets'));
12 changes: 12 additions & 0 deletions demo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/png" href="./teams.png" />
<meta charset="utf-8" />
<title>Webex Widgets</title>
</head>

<body>
<div id="widgets"></div>
</body>
</html>
Binary file added demo/teams.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f58ca53

Please sign in to comment.