mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
16 lines
330 B
React
16 lines
330 B
React
|
import React, { Component } from 'react';
|
||
|
import { Layout, Panel } from 'react-toolbox';
|
||
|
|
||
|
|
||
|
export default class Features extends Component {
|
||
|
render () {
|
||
|
return (
|
||
|
<Layout>
|
||
|
<Panel>
|
||
|
<h1>Feture toggles</h1>
|
||
|
</Panel>
|
||
|
</Layout>
|
||
|
);
|
||
|
}
|
||
|
};
|