mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-09 01:44:19 +01:00
9 lines
134 B
JavaScript
9 lines
134 B
JavaScript
import React from 'react';
|
|
|
|
import ls from './Button.less'
|
|
|
|
export default function Button({text}) {
|
|
|
|
return <span>{text}</span>
|
|
|
|
}
|