10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
import React from "react";
|
|
|
|
export default function EditRestaurantLunch(props) {
|
|
return (
|
|
<div className="editRestaurant-tab">
|
|
<p>Lunch</p>
|
|
</div>
|
|
);
|
|
}
|