Skip to content

Commit

Permalink
remove unused innerContainerId
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty-key committed Mar 26, 2024
1 parent a86b20f commit f29b23b
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions src/Layout.re
Original file line number Diff line number Diff line change
Expand Up @@ -125,18 +125,8 @@ module Sidebar = {
};

[@react.component]
let make =
(
~domRef=?,
~innerContainerId=?,
~fullHeight=false,
~children=React.null,
) =>
<div
name="Sidebar"
ref=?domRef
id=?innerContainerId
style={Styles.sidebar(~fullHeight)}>
let make = (~domRef=?, ~fullHeight=false, ~children=React.null) =>
<div name="Sidebar" ref=?domRef style={Styles.sidebar(~fullHeight)}>
children
</div>;
};
Expand Down

0 comments on commit f29b23b

Please sign in to comment.