Skip to content

Commit

Permalink
test(spec): implement simplified mixin support
Browse files Browse the repository at this point in the history
a context argument is now require by hops-react.render
  • Loading branch information
dmbch committed Nov 22, 2017
1 parent b4994db commit 18d30fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/spec/mock/integration/main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { Switch, Route } from 'react-router-dom';
import { Miss, render } from 'hops-react';
import { Miss, render, createContext } from 'hops-react';

import { headline } from './style.css';

Expand All @@ -13,4 +13,4 @@ const App = () => (
</Switch>
);

export default render(<App />);
export default render(<App />, createContext());

0 comments on commit 18d30fb

Please sign in to comment.