Implement SmartMenuiserie API + added bun test-server
This commit is contained in:
parent
281cd92194
commit
b4806db91a
21 changed files with 377 additions and 244 deletions
16
src/Components/Sidebar/Sidebar.tsx
Normal file
16
src/Components/Sidebar/Sidebar.tsx
Normal file
|
@ -0,0 +1,16 @@
|
|||
import * as React from 'react';
|
||||
import { IAvailableContainerModel } from '../../Interfaces/IAvailableContainerModel';
|
||||
|
||||
interface ISidebarProps {
|
||||
componentOptions: IAvailableContainerModel[]
|
||||
}
|
||||
|
||||
export default class Sidebar extends React.PureComponent<ISidebarProps> {
|
||||
public render() {
|
||||
return (
|
||||
<nav className='bg-blue min-h-full'>
|
||||
|
||||
</nav>
|
||||
);
|
||||
}
|
||||
}
|
12
src/Components/SidebarRow/SidebarRow.tsx
Normal file
12
src/Components/SidebarRow/SidebarRow.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
import * as React from 'react';
|
||||
|
||||
interface ISidebarRowProps {
|
||||
}
|
||||
|
||||
export const SidebarRow: React.FC<ISidebarRowProps> = (props) => {
|
||||
return (
|
||||
<div>
|
||||
|
||||
</div>
|
||||
);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue