scinote-web/app/javascript/packs/shared/navigation/components/CustomNavItem.jsx

7 lines
145 B
React
Raw Normal View History

2017-08-08 21:44:28 +08:00
import React from "react";
2017-08-09 20:49:29 +08:00
export default ({ className, children }) =>
<li className={className} role="presentation">
{children}
2017-08-08 21:44:28 +08:00
</li>;