14 lines
319 B
HTML
14 lines
319 B
HTML
<!-- Riot.js component for the news page (converted from app/news/page.tsx) -->
|
|
<template>
|
|
<div class="flex flex-col h-screen bg-gray-50">
|
|
<!-- Add news page content here -->
|
|
</div>
|
|
</template>
|
|
|
|
<script >
|
|
import './style.css';
|
|
|
|
export default {
|
|
// No additional state needed for this simple page
|
|
};
|
|
</script>
|