Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
SafdarJamal committed Jan 2, 2022
1 parent b0c93f1 commit be0366e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/App.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { Component } from 'https://unpkg.com/preact@10.4.8/dist/preact.module.js';
import { Component } from 'https://unpkg.com/preact@10.6.4/dist/preact.module.js';

class App extends Component {
constructor(props) {
super(props);

this.state = {
input: '',
list: []
list: [],
};

this.handleChange = this.handleChange.bind(this);
Expand Down
6 changes: 3 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {
h,
render
} from 'https://unpkg.com/preact@10.4.8/dist/preact.module.js';
import htm from 'https://unpkg.com/htm@3.0.4/dist/htm.module.js';
render,
} from 'https://unpkg.com/preact@10.6.4/dist/preact.module.js';
import htm from 'https://unpkg.com/htm@3.1.0/dist/htm.module.js';
window.html = htm.bind(h);

import App from './components/App.js';
Expand Down

0 comments on commit be0366e

Please sign in to comment.