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
215 B
JavaScript
Raw Normal View History

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