Files
freeCodeCamp/common/app/routes/Jobs/components/Preview.jsx

15 lines
283 B
JavaScript
Raw Normal View History

2015-09-26 22:23:56 -07:00
// import React, { PropTypes } from 'react';
import { contain } from 'thundercats-react';
import ShowJob from './ShowJob.jsx';
export default contain(
{
store: 'JobsStore',
actions: 'JobActions',
map({ form: job = {} }) {
return { job };
}
},
ShowJob
);