Skip to content

Commit a2f7a1d

Browse files
committed
Update stateless-container.js
1 parent 6275e6e commit a2f7a1d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/templates/stateless-container.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import TesterComponent from "./Tester.component";
22

33
const TesterContainer = (props) => {
4-
return <TesterComponent {...props} />;
4+
const containerProps = {};
5+
const containerFunctions = {};
6+
return (
7+
<TesterComponent {...props} {...containerProps} {...containerFunctions} />
8+
);
59
};
6-
710
export default TesterContainer;

0 commit comments

Comments
 (0)