Created
July 5, 2025 23:07
-
-
Save codigoconjuan/212c9ffba29f7e8d0edb498ee033dfcc to your computer and use it in GitHub Desktop.
Componente para mostrar contenidos de la Orden
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div className="p-5 shadow-lg space-y-5 border border-gray-200 "> | |
<div className='text-sm grid grid-cols-2 justify-between text-gray-600'> | |
<h2>ID Orden: <span className='font-black'></span></h2> | |
<p className='text-right'>Cliente: </p> | |
</div> | |
<div> | |
Contenido: | |
<div></div> | |
</div> | |
<select onChange={() => {}} className='border border-gray-300 w-full p-2 text-center'> | |
</select> | |
<p className='text-right text-lg'>Total orden: | |
<span className='text-amber-400 font-black'> | |
</span> | |
</p> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment