summaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/pages/querybuilder/Components/Text/TextBox.jsx
blob: 022b250da7c1c0cdd6e52e0a7e86339cbaf53b62 (plain) (blame)
1
2
3
4
5
6
7
8
9
import React from 'react';

export default function TextBox({ id, className, children }) {
  return (
    <p className={className} id={id}>
      {children}
    </p>
  );
}