mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
9 lines
160 B
JavaScript
9 lines
160 B
JavaScript
import React from 'react';
|
|
|
|
export default function InputPrepend({ children }) {
|
|
return (
|
|
<div class="input-prepend">
|
|
{ children }
|
|
</div>
|
|
);
|
|
} |