mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-09 00:13:49 +08:00
6 lines
145 B
JavaScript
6 lines
145 B
JavaScript
import React from "react";
|
|
|
|
export default ({ className, children }) =>
|
|
<li className={className} role="presentation">
|
|
{children}
|
|
</li>;
|