mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-10 02:13:58 +01:00
8 lines
184 B
JavaScript
8 lines
184 B
JavaScript
import React from 'react';
|
|
|
|
import TextControl from "ui/components/controls/TextControl";
|
|
|
|
export default function FaceSelectionControl(props) {
|
|
return <TextControl {...props} />
|
|
}
|
|
|