mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 06:27:19 +01:00
add prettier and format all
This commit is contained in:
@@ -1,18 +1,18 @@
|
||||
import React from 'react';
|
||||
import React from 'react'
|
||||
|
||||
export default (props) => {
|
||||
const { options = [] } = props;
|
||||
const { options = [] } = props
|
||||
|
||||
return (
|
||||
<label>
|
||||
{props.text}
|
||||
<select
|
||||
className={props.name}
|
||||
onChange={props.onchange.bind(null, props.name)}
|
||||
value={props.value}
|
||||
>
|
||||
{options.map((option) => <option value={option.value} key={option.value}>{option.name}</option>)}
|
||||
<select className={props.name} onChange={props.onchange.bind(null, props.name)} value={props.value}>
|
||||
{options.map((option) => (
|
||||
<option value={option.value} key={option.value}>
|
||||
{option.name}
|
||||
</option>
|
||||
))}
|
||||
</select>
|
||||
</label>
|
||||
);
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user