* add with-theme hoc * add dark theme styles for components * add toggle theme button to the dev demo page * add info about widget themes to README
9 lines
165 B
React
9 lines
165 B
React
/** @jsx h */
|
|
import { h } from 'preact';
|
|
|
|
export default props => (
|
|
<div className={b('auth-panel__user-id', props)} title={props.id}>
|
|
{props.id}
|
|
</div>
|
|
);
|