11 lines
236 B
JavaScript
11 lines
236 B
JavaScript
import React from "react";
|
|
|
|
export default function Support() {
|
|
return (
|
|
<div style={{padding:40}}>
|
|
<h3>Suporte por telefone</h3>
|
|
<p>Funcionalidade de chamada/suporte será implementada em breve.</p>
|
|
</div>
|
|
);
|
|
}
|