You've already forked factorio-server-manager
mirror of
https://github.com/OpenFactorioServerManager/factorio-server-manager.git
synced 2025-12-26 00:42:03 +02:00
12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
import React from "react";
|
|
|
|
const Label = ({text, htmlFor}) => {
|
|
return (
|
|
<label
|
|
className="block text-white text-sm font-bold mb-1" htmlFor={htmlFor}>
|
|
{text}
|
|
</label>
|
|
)
|
|
}
|
|
|
|
export default Label; |