Skip to content

Commit

Permalink
Update the example
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsolankiamit committed Oct 25, 2018
1 parent 481a180 commit 24dbd83
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions example.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from 'react';
import { render } from 'react-dom';
import useDocumentTitle from './';
import React from "react";
import { render } from "react-dom";
import useDocumentTitle from "./";

function App() {
useDocumentTitle('page Title');
return <div/>;
useDocumentTitle("page Title");
return <div />;
}

render(<App />, window.root);

0 comments on commit 24dbd83

Please sign in to comment.