11 lines
304 B
JavaScript
11 lines
304 B
JavaScript
function App() {
|
|
|
|
return (
|
|
<div className="flex flex-col items-center justify-center min-h-screen py-2">
|
|
<h1 className="text-3xl font-bold underline text-center">สวัสดี! ทดสอบ CI/CD อัตโนมัติสำเร็จ</h1>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default App
|