19 lines
377 B
TypeScript
19 lines
377 B
TypeScript
import React from "react";
|
|
import TopP from "./TopP";
|
|
import Left from "./Left";
|
|
import Right from "./Right";
|
|
import Center from "./Center";
|
|
function LinePage() {
|
|
return (
|
|
<React.Fragment>
|
|
<TopP />
|
|
<div className="block_bottom flex-row">
|
|
<Left />
|
|
<Center />
|
|
<Right />
|
|
</div>
|
|
</React.Fragment>
|
|
);
|
|
}
|
|
export default LinePage;
|