react/src/components/BottomBox.jsx
2025-02-15 00:31:38 +03:00

11 lines
243 B
JavaScript

import React, { Component } from 'react'
export default class BottomBox extends Component {
render() {
return (
<div className='flex p-2 gap-4 items-center w-full bg-pc rounded-2xl'>
<p>BOTTOM</p>
</div>
)
}
};