Files
bigcapital/src/components/Forms/InputPrepend.js
2021-09-21 17:13:53 +02:00

9 lines
160 B
JavaScript

import React from 'react';
export default function InputPrepend({ children }) {
return (
<div class="input-prepend">
{ children }
</div>
);
}