mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-10 23:45:44 +01:00
use reflow to migrate from flow to typescript
This commit is contained in:
13
scm-ui/ui-components/src/navigation/Navigation.tsx
Normal file
13
scm-ui/ui-components/src/navigation/Navigation.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import * as React from 'react';
|
||||
|
||||
type Props = {
|
||||
children?: React.Node;
|
||||
};
|
||||
|
||||
class Navigation extends React.Component<Props> {
|
||||
render() {
|
||||
return <aside className="menu">{this.props.children}</aside>;
|
||||
}
|
||||
}
|
||||
|
||||
export default Navigation;
|
||||
Reference in New Issue
Block a user