1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/page/strategies/show.js

7 lines
247 B
JavaScript
Raw Normal View History

import React from 'react';
2016-12-17 14:37:11 +01:00
import ShowStrategy from '../../component/strategies/strategy-details-container';
const render = ({ params }) => <ShowStrategy strategyName={params.strategyName} activeTab={params.activeTab} />;
export default render;